Class PropertyHelper

java.lang.Object
org.glassfish.persistence.common.database.PropertyHelper

public class PropertyHelper extends Object
Author:
Mitesh Meswani This class provides helper to load reources into property object.
  • Constructor Details

    • PropertyHelper

      public PropertyHelper()
  • Method Details

    • loadFromResource

      public static void loadFromResource(Properties properties, String resourceName, ClassLoader classLoader) throws IOException
      Loads properties list from the specified resource into specified Properties object.
      Parameters:
      properties - Properties object to load
      resourceName - Name of resource.
      classLoader - The class loader that should be used to load the resource. If null,primordial class loader is used.
      Throws:
      IOException
    • loadFromFile

      public static void loadFromFile(Properties properties, String fileName) throws IOException
      Loads properties list from the specified file into specified Properties object.
      Parameters:
      properties - Properties object to load
      fileName - Fully qualified path name to the file.
      Throws:
      IOException