org.jlf.dataMap
Class DataLocationProperties

java.lang.Object
  |
  +--java.util.Dictionary
        |
        +--java.util.Hashtable
              |
              +--java.util.Properties
                    |
                    +--org.jlf.util.AppProperties
                          |
                          +--org.jlf.dataMap.DataLocationProperties
All Implemented Interfaces:
java.lang.Cloneable, java.util.Map, java.io.Serializable

public class DataLocationProperties
extends AppProperties

DataLocationProperties provides convenience accessors to map DataMappedObjects to/from a DataLocation.

See Also:
DataLocation, DataMappedObject, Serialized Form

Field Summary
 
Fields inherited from class org.jlf.util.AppProperties
PROPERTY_FILE_COMPONENT_VERSION_PREFIX, propertyFileName, singleton
 
Fields inherited from class java.util.Properties
defaults
 
Constructor Summary
protected DataLocationProperties()
          Protect the default constructor, this class uses a Singleton pattern.
  DataLocationProperties(java.util.Properties properties)
          Passthrough constructor for default properties.
protected DataLocationProperties(java.lang.String propertyFileName)
          Constructor which reads the property file with the file name given.
 
Methods inherited from class org.jlf.util.AppProperties
getBooleanProperty, getComponentsAndVersions, getInstance, getIntegerProperty, getLongProperty, getPropertiesForPrefix, getStringProperty, isRelativePathFileName, load
 
Methods inherited from class java.util.Properties
getProperty, getProperty, list, list, load, propertyNames, save, setProperty, store
 
Methods inherited from class java.util.Hashtable
clear, clone, contains, containsKey, containsValue, elements, entrySet, equals, get, hashCode, isEmpty, keys, keySet, put, putAll, rehash, remove, size, toString, values
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

DataLocationProperties

protected DataLocationProperties()
Protect the default constructor, this class uses a Singleton pattern. If you need to access the Singleton instance of the class, DON'T make this public, instead use the getInstance() method!


DataLocationProperties

protected DataLocationProperties(java.lang.String propertyFileName)
Constructor which reads the property file with the file name given.


DataLocationProperties

public DataLocationProperties(java.util.Properties properties)
Passthrough constructor for default properties.