public class ServiceConfig extends Object
ServiceConfig
provides interfaces to manage the
configuration information of a service configuration. It provides methods to
get and set configuration parameters for this service configuration.Modifier | Constructor and Description |
---|---|
protected |
ServiceConfig(ServiceConfigManager scm,
com.sun.identity.sm.ServiceConfigImpl sc)
Protected constructor
|
Modifier and Type | Method and Description |
---|---|
void |
addAttribute(String attrName,
Set values)
Adds a configuration parameter to the service configuration.
|
void |
addExportedOrganizationNames(Set names)
Adds the organization names to the list of organization names that can import this service configutation.
|
void |
addSubConfig(String subConfigName,
String subConfigId,
int priority,
Map<String,Set<String>> attrs)
Adds a service sub-configuration with configuration parameters.
|
void |
addSubConfig(String subConfigName,
String subConfigId,
int priority,
Map<String,Set<String>> attrs,
boolean isNewRealm)
Adds a service sub-configuration with configuration parameters.
|
void |
checkAndCreateGroup(String dn,
String groupName,
DataStoreId dataStoreId) |
void |
deleteLabeledUri(String luri)
Deprecated.
The labeledURI setting shall not be used for storing configuration data.
|
boolean |
exists()
Returns
true if the entry exist |
Map<String,Set<String>> |
getAttributes()
Returns a defensive copy of service configuration parameters.
|
Map<String,Set<String>> |
getAttributesForRead()
Returns the service configuration parameters for read only, modification cannot be performed on the return
Map . |
Map<String,Set<String>> |
getAttributesWithoutDefaults()
Returns the service configuration parameters without inheriting the default values from service's schema.
|
Map<String,Set<String>> |
getAttributesWithoutDefaultsForRead()
Returns the service configuration parameters for read only without inheriting the default values from service's
schema.
|
Set<String> |
getAttributeValue(String attributeName)
Returns a service configuration parameter's values.
|
String |
getComponentName()
Returns the service component name.
|
String |
getDN()
Returns the LDAP DN represented by this
ServiceConfig object. |
Set |
getExportedOrganizationNames()
Returns the organization names to which the service configuration is being exported.
|
Set |
getExportedSubConfigNames(String serviceId)
Returns a set of exported fully qualified sub-configuration names that can be imported used locally as service
configuration
|
String |
getLabeledUri()
Deprecated.
The labeledURI setting shall not be used for storing configuration data.
|
String |
getLastModifiedTime()
Returns the last modified time stamp of this configuration This method is expensive because it does not cache
the modified time stamp but goes directly to the data store to obtain the value of this entry
|
String |
getName()
Returns the service name.
|
int |
getPriority()
Returns the priority assigned to the service configuration.
|
String |
getSchemaID()
Returns the service component's schema ID.
|
String |
getServiceName()
Returns the name of this service configuration.
|
ServiceConfig |
getSubConfig(String subConfigName)
Returns the service's sub-configuration given the service's sub-configuration name.
|
Map<String,Set<String>> |
getSubConfigEntity(String entityName)
Method to retrieve a single service sub-configuration entry by name.
|
Set<String> |
getSubConfigNames()
Returns the names of all service's sub-configurations.
|
Set<String> |
getSubConfigNames(String pattern)
Method to get names of service's sub-configurations that match the given pattern.
|
Set<String> |
getSubConfigNames(String pattern,
String schemaName)
Method to get names of service's sub-configurations that match the given pattern and belongs to the specified
service schema name.
|
String |
getVersion()
Returns the service version
|
void |
importSubConfig(String subConfigName,
String exportedSubConfigName)
Imports a service sub-configuration to the list of localy defined
sub-configuration.
|
boolean |
isValid()
Returns the status of this Service Configuration Object.
|
boolean |
isValid(DataStoreId dataStoreId)
Returns the status of this Service Configuration Object with a specific datastore.
|
void |
removeAttribute(String attrName)
Removes a configuration parameter from the service configuration.
|
void |
removeAttributes(Set attrNames)
Removes a configuration parameters from the service configuration.
|
void |
removeAttributeValues(String attrName,
Set values)
Removes the specific values for the given configuration parameter.
|
void |
removeSharedOrganizationNames(Set names)
Removes the organization names from the list of organization names that can import the service configuration.
|
void |
removeSubConfig(String subConfigName)
Removes the service sub-configuration.
|
void |
replaceAttributeValue(String attrName,
String oldValue,
String newValue)
Replaces old value of the configuration parameter with new value.
|
void |
replaceAttributeValues(String attrName,
Set oldValues,
Set newValues)
Replaces the old values of the configuration parameter with the new values.
|
void |
setAttributes(Map attrs)
Sets the service configuration parameters.
|
void |
setExportedOrganizationNames(Set names)
Sets the organization names that can import the service configuration.
|
void |
setLabeledUri(String luri)
Deprecated.
The labeledURI setting shall not be used for storing configuration data.
|
void |
setPriority(int priority)
Sets the priority to the service configuration.
|
String |
toString()
Returns String representation of the
ServiceConfig object. |
String |
toXML(String NodeTag,
AMEncryption encryptObj) |
String |
toXML(String NodeTag,
AMEncryption encryptObj,
String orgName) |
protected ServiceConfig(ServiceConfigManager scm, com.sun.identity.sm.ServiceConfigImpl sc)
public String getServiceName()
public String getVersion()
public String getComponentName()
public String getName()
public String getSchemaID()
public int getPriority()
public void setPriority(int priority) throws SSOException, SMSException
priority
- the priority to be assigned to the configurationSMSException
- if there is an error occurred while performing the operationSSOException
- if the user's single sign-on is invalid or expiredpublic String getLabeledUri()
public void setLabeledUri(String luri) throws SSOException, SMSException
luri
- the labeled uri to be assigned to the configurationSMSException
- if there is an error occurred while performing the operationSSOException
- if the user's single sign-on is invalid or expiredpublic void deleteLabeledUri(String luri) throws SSOException, SMSException
luri
- the labeled uri to be assigned to the configurationSMSException
- if there is an error occurred while performing the operationSSOException
- if the user's single sign-on is invalid or expiredpublic Set<String> getSubConfigNames() throws SMSException
SMSException
- if there is an error accessing the data storepublic Set<String> getSubConfigNames(String pattern) throws SMSException
pattern
- pattern to match for sub-configuration namesSMSException
- if an error occurred while performing the operation.public Set<String> getSubConfigNames(String pattern, String schemaName) throws SMSException
pattern
- pattern to match for other entities.schemaName
- service schema name.SMSException
- if an error occurred while performing the operation.public Map<String,Set<String>> getSubConfigEntity(String entityName) throws SMSException
entityName
- name to match for entitySMSException
- if an error occurred while performing the operationpublic Set getExportedSubConfigNames(String serviceId) throws SMSException
serviceId
- service schema identifierSMSException
- if an error occurred while performing the operation.public ServiceConfig getSubConfig(String subConfigName) throws SSOException, SMSException
subConfigName
- The name of the service's sub-configuration to retrieve.ServiceConfig
object corresponding to the
specified name of the service's sub-configuration.SMSException
- if there is an error occurred while performing the operationSSOException
- if the user's single sign-on is invalid or expiredpublic void addSubConfig(String subConfigName, String subConfigId, int priority, Map<String,Set<String>> attrs) throws SMSException, SSOException
subConfigName
- the name of service sub-configuration to addsubConfigId
- type of service sub-configurationpriority
- the priority of the configurationattrs
- configuration parameters for the sub-configurationSMSException
- if there is an error occurred while performing the operationSSOException
- if the user's single sign-on is invalid or expiredpublic void addSubConfig(String subConfigName, String subConfigId, int priority, Map<String,Set<String>> attrs, boolean isNewRealm) throws SMSException, SSOException
subConfigName
- the name of service sub-configuration to addsubConfigId
- type of service sub-configurationpriority
- the priority of the configurationattrs
- configuration parameters for the sub-configurationisNewRealm
- indicates if the realm is being createdSMSException
- if there is an error occurred while performing the operationSSOException
- if the user's single sign-on is invalid or expiredpublic void removeSubConfig(String subConfigName) throws SMSException, SSOException
subConfigName
- name of service sub-configuration to removeSMSException
- if there is an error occurred while performing the operationSSOException
- if the user's single sign-on is invalid or expiredpublic void importSubConfig(String subConfigName, String exportedSubConfigName) throws SMSException, SSOException
getExportedSubConfigNames
.subConfigName
- the name of service sub-configuration to add locallyexportedSubConfigName
- the fully qualified name of the exported sub-configuration nameSMSException
- if there is an error occurred while performing the operationSSOException
- if the user's single sign-on is invalid or expiredpublic Map<String,Set<String>> getAttributes()
Map
contains the attribute names and their corresponding values in the
Map
is a Set
that contains the values for the attribute. This method picks up the
default values for any attributes not defined in the ServiceConfig
. The default values for these
attributes are picked up from the Service Schema. If there is no default value defined, then this method will
still return the attribute-value pair, except that the Set will be a Collections.EMPTY_SET. This is distinct from
a Set containing only one empty value. The latter represents an attribute whose value has been set to an empty
value by the application using the setAttributes()
method.
In case the retrieved attributes are not modified by the caller, use ServiceConfig.getAttributesForRead()
instead.Map
where key is the attribute name and value is the Set
of attribute
values.@Nullable public Set<String> getAttributeValue(String attributeName)
Set
that contains the
values for the attribute.attributeName
- The name of the attribute to return.Set
of attribute values. May be null if the attribute isn't defined.public Map<String,Set<String>> getAttributesWithoutDefaults()
Map
contains the attribute names and their corresponding values in the Map
is a Set
that contains the values for the attribute.public Map<String,Set<String>> getAttributesForRead()
Map
. The keys in the Map
contains the attribute names and their corresponding values
in the Map
is a Set
that contains the values for the attribute. This method picks up
the default values for any attributes not defined in the ServiceConfig
. The default values for
these attributes are picked up from the Service Schema. If there is no default value defined, then this method
will still return the attribute-value pair, except that the Set will be a Collections.EMPTY_SET. This is distinct
from an empty Set with no entries in it. AN empty set represents an attribute whose value has been set to an
empty value by the application using the setAttributes()
method.Map
where key is the attribute name and value is the Set
of attribute
valuespublic Map<String,Set<String>> getAttributesWithoutDefaultsForRead()
Map
contains the attribute names and their corresponding values in the
Map
is a Set
that contains the values for the attribute.public void setAttributes(Map attrs) throws SMSException, SSOException
Map
contains the attribute names and
their corresponding values in the Map
is a Set
that contains the values for the
attribute. This method will replace the existing attribute values with the given one. For attributes that are not
specified in attrs
, it will not be modified.attrs
- the Map
where key is the attribute name and value is the Set
of attribute
valuesSMSException
- if there is an error occurred while performing the operationSSOException
- if the user's single sign-on is invalid or expiredpublic void addAttribute(String attrName, Set values) throws SMSException, SSOException
attrName
- the name of the attribute to addvalues
- the set of values to addSMSException
- if there is an error occurred while performing the operationSSOException
- if the user's single sign-on is invalid or expiredpublic void removeAttribute(String attrName) throws SMSException, SSOException
attrName
- the name of the attribute to removeSMSException
- if there is an error occurred while performing the operationSSOException
- if the user's single sign-on is invalid or expiredpublic void removeAttributes(Set attrNames) throws SMSException, SSOException
attrNames
- Set
of attribute names to removeSMSException
- if there is an error occurred while performing the operationSSOException
- if the user's single sign-on is invalid or expiredpublic void removeAttributeValues(String attrName, Set values) throws SMSException, SSOException
attrName
- the name of the attributevalues
- set of attribute values to remove from the given attributeSMSException
- f there is an error occurred while performing the operationSSOException
- if the user's single sign-on is invalid or expiredpublic void replaceAttributeValue(String attrName, String oldValue, String newValue) throws SMSException, SSOException
attrName
- the name of the attributeoldValue
- the old value to remove from the attributenewValue
- the new value to add to the attributeSMSException
- if there is an error occurred while performing the operationSSOException
- if the user's single sign-on is invalid or expiredpublic void replaceAttributeValues(String attrName, Set oldValues, Set newValues) throws SMSException, SSOException
attrName
- the name of the attributeoldValues
- the set of old values to remove from the attributenewValues
- the set of new values to add to the attributeSMSException
- if there is an error occurred while performing the operationSSOException
- if the user's single sign-on is invalid or expiredpublic String getDN()
ServiceConfig
object.ServiceConfig
object.public String getLastModifiedTime() throws SMSException, SSOException
yyyyMMddhhmmss
SMSException
- if there is an error trying to read from the data storeSSOException
- if the single sign-on token of the user is invalid.public Set getExportedOrganizationNames()
public void setExportedOrganizationNames(Set names) throws SMSException, SSOException
names
- names of the organizations that can import the service configurationSMSException
SSOException
public void addExportedOrganizationNames(Set names) throws SMSException, SSOException
names
- names of the organizations that can import the service configurationSMSException
SSOException
public void removeSharedOrganizationNames(Set names) throws SMSException, SSOException
names
- names of the organizations that will be removed from the list of organization names that can import
the service configurationSMSException
SSOException
public String toString()
ServiceConfig
object. It returns attributes defined and sub
configurations.public void checkAndCreateGroup(String dn, String groupName, DataStoreId dataStoreId) throws SMSException, SSOException
SMSException
SSOException
public boolean isValid()
true
if this object is still valid.public boolean isValid(DataStoreId dataStoreId)
true
if this object is still valid.public boolean exists()
true
if the entry existpublic String toXML(String NodeTag, AMEncryption encryptObj) throws SMSException, SSOException
SMSException
SSOException
public String toXML(String NodeTag, AMEncryption encryptObj, String orgName) throws SMSException, SSOException
SMSException
SSOException
Copyright © 2010-2018, ForgeRock All Rights Reserved.