Class PoolUtilities


  • public class PoolUtilities
    extends java.lang.Object
    Utility methods for managing JDBC pool properties.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String PROP_PASSWORD
      Property key for the database password.
      static java.lang.String PROP_USER
      Property key for the database user name.
    • Constructor Summary

      Constructors 
      Constructor Description
      PoolUtilities()
      Default constructor.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static java.util.Properties clone​(java.util.Properties p)
      Creates a shallow copy of the given properties.
      static java.util.Properties cloneWithoutPassword​(java.util.Properties p)
      Creates a copy of the given properties with the password entry removed.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • PROP_USER

        public static final java.lang.String PROP_USER
        Property key for the database user name.
        See Also:
        Constant Field Values
      • PROP_PASSWORD

        public static final java.lang.String PROP_PASSWORD
        Property key for the database password.
        See Also:
        Constant Field Values
    • Constructor Detail

      • PoolUtilities

        public PoolUtilities()
        Default constructor.
    • Method Detail

      • clone

        public static java.util.Properties clone​(java.util.Properties p)
        Creates a shallow copy of the given properties.
        Parameters:
        p - the properties to clone
        Returns:
        a new Properties instance containing all entries from the source
      • cloneWithoutPassword

        public static java.util.Properties cloneWithoutPassword​(java.util.Properties p)
        Creates a copy of the given properties with the password entry removed.
        Parameters:
        p - the properties to clone
        Returns:
        a new Properties instance with all entries except the password