Class Configuration
java.lang.Object
java.util.Dictionary<K,V>
java.util.Hashtable<Object,Object>
java.util.Properties
oracle.tip.pc.services.identity.config.ConfigurationProperties
oracle.tip.pc.services.identity.config.Configuration
- All Implemented Interfaces:
Serializable
,Cloneable
,Map<Object,
Object>
This class represents configuration as described in the configuration file.
- Since:
- release specific (what release of product did this appear in)
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConfiguration
(ISConfiguration isconfig, ConfigurationType config) Constructor Constructs a Configuration object out of the JAXB model object.Configuration
(ISConfiguration isconfig, Element element) Constructor Constructs a Configuration object out of the XML element.Configuration
(Element element) Constructor Constructs a Configuration object out of the XML element. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Check if object sameGets display name associated with this configuration.Gets the parent ISConfiguration of this configuration.getProviderCfg
(String serviceName) Gets a ProviderCfg associated with the given service name.Gets aMap
of the providers associated with this configuration.Gets the name of the logical realm associated with this configuration.Gets a ServiceExtesnions defined for the configurationsgetServiceProviderInstance
(ServiceProviderExtensionType serviceProviderType) Gets the instance of the service provider from the configuration.int
hashCode()
hash code for ISConfigurationboolean
Check if configuration is defaultboolean
Set configuration to be defaulttoString()
To StringtoXMLElement
(Document doc, Element rootElt) Returns an XMLElement representation of this configuration.Methods inherited from class java.util.Properties
clear, clone, compute, computeIfAbsent, computeIfPresent, contains, containsKey, containsValue, elements, entrySet, forEach, get, getOrDefault, getProperty, getProperty, isEmpty, keys, keySet, list, list, load, load, loadFromXML, merge, propertyNames, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, save, setProperty, size, store, store, storeToXML, storeToXML, storeToXML, stringPropertyNames, values
-
Constructor Details
-
Configuration
Constructor Constructs a Configuration object out of the XML element. This element is expected to adhere to the schema definition.- Parameters:
isconfig
- An ISConfiguration instance that is obtained using theISConfigurationService
. This instance is the parent of this Configuration. It can be null.element
- An XML element representing the configuration.- Throws:
BPMConfigException
- If the element is malformed.
-
Configuration
Constructor Constructs a Configuration object out of the JAXB model object.- Parameters:
isconfig
- An ISConfiguration instance that is obtained using theISConfigurationService
. This instance is the parent of this Configuration. It can be null.config
- A JAXB model object representing the Configration.- Throws:
BPMConfigException
- If the model object does not have a realm associated with it.
-
Configuration
Constructor Constructs a Configuration object out of the XML element. This element is expected to adhere to the schema definition.- Parameters:
element
- An XML element representing the configuration.- Throws:
BPMConfigException
- If the element is malformed.
-
-
Method Details
-
getISConfiguration
Gets the parent ISConfiguration of this configuration. Value is null if non is associated.- Returns:
- An ISConfiguration instance or null.
-
getRealmName
Gets the name of the logical realm associated with this configuration.- Returns:
- Name of the logical realm.
-
getDisplayName
Gets display name associated with this configuration.- Returns:
- display name
-
isDefault
public boolean isDefault()Check if configuration is default- Returns:
- true if default, else false
-
setDefault
public boolean setDefault()Set configuration to be default -
getProviders
Gets aMap
of the providers associated with this configuration. The Map has ProviderCfg instnaces with the service name as the key.- Returns:
- Map(SerivceName, ProviderCfg)
-
getProviderCfg
Gets a ProviderCfg associated with the given service name. If no provider is found, then the default is returned.- Parameters:
serviceName
- The name of the service for which a provider is to be fetched.- Returns:
- ProviderCfg
- Throws:
BPMConfigException
- If there are no providers associated at all.
-
toXMLElement
Returns an XMLElement representation of this configuration.- Parameters:
doc
- A Document which is expected to contain this configuration as a child.rootElt
- An element that is to contain this configuration as a child.- Returns:
- root Element. Returns null if a problem is encountered.
-
hashCode
public int hashCode()hash code for ISConfiguration -
equals
Check if object same -
toString
To String- Overrides:
toString
in classConfigurationProperties
- Returns:
- string representation
-
getServiceExtensions
Gets a ServiceExtesnions defined for the configurations -
getServiceProviderInstance
public IServiceProvider getServiceProviderInstance(ServiceProviderExtensionType serviceProviderType) throws BPMIdentityException Gets the instance of the service provider from the configuration. If the configuration does not have the provider defined, returns null;- Parameters:
serviceProviderType
-- Returns:
- Throws:
BPMIdentityException
-