public class

ConfigurationMemoryMap

extends Object
implements IConfiguration
java.lang.Object
   ↳ com.pnfsoftware.jeb.core.properties.impl.ConfigurationMemoryMap

Class Overview

Configuration implementation where objects are stored in a hash-map in memory.

Summary

Public Constructors
ConfigurationMemoryMap()
ConfigurationMemoryMap(IConfiguration template)
Public Methods
void clearProperty(String key)
Remove a property from the configuration object.
Set<String> getAllPropertyKeys()
Get the collection of all property keys held by this configuration object.
Object getProperty(String key)
Retrieve a property value.
void setProperty(String key, Object value)
Set a property value.
String toString()
[Expand]
Inherited Methods
From class java.lang.Object
From interface com.pnfsoftware.jeb.core.properties.IConfiguration

Public Constructors

public ConfigurationMemoryMap ()

public ConfigurationMemoryMap (IConfiguration template)

Public Methods

public void clearProperty (String key)

Remove a property from the configuration object.

Parameters
key the property key

public Set<String> getAllPropertyKeys ()

Get the collection of all property keys held by this configuration object.

public Object getProperty (String key)

Retrieve a property value.

Parameters
key the property key
Returns
  • the property value, null if the property does not exist

public void setProperty (String key, Object value)

Set a property value.

Parameters
key the property key
value the property value

public String toString ()