/*
* If there is no address implementation for the current system
* created yet, we will create it and put it in the Hashtable.
*/
Configuration config = Configuration.getInstance();
/*
* If an implementation for the address is provided with the system,
* than this implementation is getting used.
*/
String addressImplementationNameShort = config.getValueOptional(
Constants.CHAPTER_SYSTEM, systemName, ADDITIONAL_ADDRESS);
if (addressImplementationNameShort == null)
{
/*
* If there is no system specific implementation, there maybe is
* a global entry.
*/
addressImplementationNameShort = config.getValueOptional(
"Base", Constants.CHAPTER_SYSTEM, ADDITIONAL_ADDRESS);
}
if (addressImplementationNameShort != null)