Interface BPMIdentityConfigService
- All Superinterfaces:
Service
- All Known Implementing Classes:
ISConfigurationService
An interface describing the Identity Service configurations
This interface is implemented to provide configuration details to Identity Service.
A minimum valid configuration comprises of:
- Since:
- release specific (what release of product did this appear in)
-
Method Summary
Modifier and TypeMethodDescriptiongetConfiguration
(String realmName) Gets IdentityService Configuration associated with a logical realm name as configured in the configurations.Gets aMap
of Configurations.getConfiguredApplications
(String realmName) Gets List of configured application name (application id) for identity service provider.Gets name of default logical realm.Gets set of supported logical realms as configured in the configuration file.
-
Method Details
-
getConfiguration
Gets IdentityService Configuration associated with a logical realm name as configured in the configurations.- Parameters:
realmName
- The name of the logical realm that is to be represented by this Configuration object.- Throws:
BPMIdentityException
- If configuration is invalid or malformed.
-
getConfigurations
Gets aMap
of Configurations. The logical realm name acts as the key to the configurations.- Returns:
- Map of Configurations representing the logical realms as configured in the configuration file.
- Throws:
BPMIdentityException
- If configuration is invalid or malformed.
-
getSupportedRealmNames
Gets set of supported logical realms as configured in the configuration file.- Returns:
- Set of names of the supported logical realms.
- Throws:
BPMIdentityException
- If configuration is invalid or malformed.
-
getConfiguredApplications
Gets List of configured application name (application id) for identity service provider. This provider(s) is(are) the one(s) associatd with the logical realm that is passed as a parmater.- Parameters:
realmName
- A logical realm name- Returns:
- List of configured application id for identity service provider associated with realmName.
- Throws:
BPMIdentityException
- If configuration is invalid or malformed.
-
getDefaultRealmName
Gets name of default logical realm.- Returns:
- Name of default realm.
- Throws:
BPMIdentityException
- If configuration is invalid or malformed or, no default exists.
-