Package com.sun.identity.sm
Class AttributeSchema
java.lang.Object
com.sun.identity.sm.AttributeSchema
The class
AttributeSchema
provides methods to access the
schema of a configuration parameter. Also, it provides methods to set default
and choice values.-
Nested Class Summary
Modifier and TypeClassDescriptionstatic enum
This enumListOrder
defines the list orders of schema attributes and provides constants for these list orders.static enum
The classSyntax
defines the syntax of the schema attributes and provides static constants for these types.static enum
The classType
defines the types of schema attributes and provides static constants for these types.static enum
The classUIType
defines the UI types of schema attributes and provides static constants for these types. -
Constructor Summary
ModifierConstructorDescriptionprotected
AttributeSchema
(com.sun.identity.sm.AttributeSchemaImpl as, com.sun.identity.sm.PluginSchema ps) protected
AttributeSchema
(com.sun.identity.sm.AttributeSchemaImpl as, ServiceSchemaManager ssm, ServiceSchema ss) Constructor used by ServiceSchema to instantiateAttributeSchema
objects. -
Method Summary
Modifier and TypeMethodDescriptionvoid
addChoiceValue
(String value, String i18nKey) Adds a choice value and its i18n key to the existing set of choice values.void
addDefaultValue
(String value) Adds a default value to the existing set of default values.getAny()
Method to get service specific attributes.getChoiceValueI18NKey
(String cValue) Returns the I18N key for the given choice value.String[]
Returns the possible choice values for the attribute if the attribute type is eitherSINGLE_CHOICE
orMULTIPLE_CHOICE
.String[]
getChoiceValues
(Map envParams) Returns the possible choice values for the attribute if the attribute type is eitherSINGLE_CHOICE
orMULTIPLE_CHOICE
, for the given environment parameters.getChoiceValuesMap
(Map<String, Object> envParams) Returns the possible choice values for the attribute if the attribute type is eitherSINGLE_CHOICE
orMULTIPLE_CHOICE
, for the given environment parameters, along with the values' i18n keys.Returns the value of thecosQualifier
for this attribute that isdefault, override, operational or merge-cos
.Returns the default values of the attribute.getDefaultValues
(Map envParams) Returns the default values of the attribute for the given environment parameters.Returns the end range if the attribute syntax is eitherNUMBER_RANGE
orDECIMAL_RANGE
.Returns the example values of the attribute.Returns the string value forBooleanFalseValue
.Returns theI18N
Key forBooleanFalseValue
.Returns the specified flagEnablingAttribute attribute, or null if not specified.Returns the I18N key to describe the configuration attribute.Returns the list order of the attribute.int
Returns the maximum number of values for the attribute if the attribute is of typeMULTIPLE_CHOICE
.int
Returns the required minimum lenght of the attribute valueint
Returns the minimum number of values for the attribute if the attribute is of typeMULTIPLE_CHOICE
.getName()
Returns the name of the attribute.getOrder()
Returns the order of this attribute.Returns URL of the view bean for the attribute.Returns the name of this attribute when used in a CREST representation.Returns Service Schema.Returns the start range if the attribute syntax is eitherNUMBER_RANGE
orDECIMAL_RANGE
.Returns the syntax of the attribute.Returns the string value forBooleanTrueValue
.Returns theI18N
key forBooleanTrueValue
.getType()
Returns the type of the attribute.Returns the UI type of the attribute.Method to get the validator name for using to validate this service attributeboolean
Indicates whether this AttributeSchema has choice values defined.isHiddenByFeatureFlag
(com.iplanet.am.util.SystemPropertiesWrapper systemPropertiesWrapper) Return whether this attribute schema item should be considered hidden based on its flagEnablingAttribute value and the current value of the configured system property, if specified.boolean
Should this attribute schema be hidden in the Configuration UI.boolean
Returns true if the attribute is an optional attribute.boolean
Checks if the attribute allows to have resource name.boolean
Returnstrue
if the attribute is searchable;false
otherwiseboolean
Returns true if the attribute is a service identifier (i.e., in the case of LDAP it would be the COS Specifier attribute).boolean
Returns true if the attribute is a service's status attribute.void
removeChoiceValue
(String value) Removes the given value from the set of choice values.void
removeDefaultValue
(String value) Removes the given value from the set of default values.void
Removes the all the default values for the attribute.void
Sets the any attribute.void
setBooleanValues
(String trueValue, String trueValueI18nKey, String falseValue, String falseValueI18nKey) Sets the boolean values of the attribute.void
setCosQualifier
(String cosq) Sets thecosQualifier
attributevoid
setDefaultValues
(Set<String> values) Sets the default values of the attribute.void
setEndRange
(String edRange) Sets the end range Attribute.void
setI18NKey
(String i18nKey) Sets the I18N key to describe the configuration attribute.void
setMaxValue
(String maxV) Sets the maximum value attribute.void
setMinValue
(String minV) Sets the minimum value attribute.void
Sets the order of this attribute.void
Sets the URL of the view bean for the attribute.void
setResourceName
(String name) Sets the CREST representation name for the attribute.void
setSearchable
(String value) Sets the attribute isSearchable, if value is set totrue
, orfalse
.void
setStartRange
(String stRange) Sets the start range attribute.void
Sets the Syntax attribute.void
Sets the type.void
Sets theUIType
attribute.void
setValidator
(String valid) Sets the Validator attributetoString()
Returns a string representation of thisAttributeSchema
object.protected void
updateBooleanValues
(String trueValue, String trueValueI18nKey, String falseValue, String falseValueI18nKey, Document doc) protected void
updateChoiceValues
(Map<String, String> choiceValues) protected void
updateChoiceValues
(Map<String, String> choiceValues, Document doc) protected void
updateDefaultValues
(Set<String> defaultValues) Method for modifying default valuesprotected void
updateDefaultValues
(Set<String> defaultValues, Document doc) Method for modifying default values given the XML documentprotected void
updateXMLDocument
(StringBuffer sb, String elementName, Document updateDoc) protected void
updateXMLDocument
(String attrName, String attrValue) update attribute value in attribute schema element
-
Constructor Details
-
AttributeSchema
protected AttributeSchema(com.sun.identity.sm.AttributeSchemaImpl as, ServiceSchemaManager ssm, ServiceSchema ss) Constructor used by ServiceSchema to instantiateAttributeSchema
objects. -
AttributeSchema
protected AttributeSchema(com.sun.identity.sm.AttributeSchemaImpl as, com.sun.identity.sm.PluginSchema ps)
-
-
Method Details
-
getName
Returns the name of the attribute.- Returns:
- the name of the attribute
-
isHiddenInConfigUI
public boolean isHiddenInConfigUI()Should this attribute schema be hidden in the Configuration UI.- Returns:
- {true} if it should be hidden.
-
getType
Returns the type of the attribute.- Returns:
- the type of the attribute
-
getServiceSchema
Returns Service Schema.- Returns:
- Service Schema.
-
setType
Sets the type.- Parameters:
type
- to be changed to- Throws:
SMSException
- if an error is encountered when trying to setSSOException
- if the single sign on token is invalid or expired
-
getListOrder
Returns the list order of the attribute.- Returns:
- The list order of the attribute, or
null
if the list order is not defined.
-
getUIType
Returns the UI type of the attribute.- Returns:
- the UI type of the attribute; or null if the UI Type is not defined
-
setUIType
Sets theUIType
attribute.- Parameters:
uiType
- user interface type.- Throws:
SMSException
- if an error is encountered when trying to setUIType
to the attribute schema.SSOException
- if the single sign on token is invalid or expired
-
getSyntax
Returns the syntax of the attribute.- Returns:
- the syntax of the attribute
-
getMinLength
public int getMinLength()Returns the required minimum lenght of the attribute value- Returns:
- the required minimum length of the attribute value
-
setSyntax
Sets the Syntax attribute.- Parameters:
synt
- syntax- Throws:
SMSException
- if an error is encountered when trying to set the attribute syntaxSSOException
- if the single sign on token is invalid or expired
-
getI18NKey
Returns the I18N key to describe the configuration attribute.- Returns:
- the I18N key to describe the configuration attribute
-
getOrder
Returns the order of this attribute.- Returns:
- the order of this attribute, null if not defined
-
setI18NKey
Sets the I18N key to describe the configuration attribute.- Parameters:
i18nKey
- the I18N key to describe the attribute- Throws:
SMSException
- if an error is encountered when trying to set I18N key to the attribute schemaSSOException
- if the single sign on token is invalid or expired
-
setOrder
Sets the order of this attribute.- Parameters:
order
- the integer value representing the order- Throws:
SMSException
- if an error is encounteredSSOException
- if the single sign on token is invalid or expired
-
getCosQualifier
Returns the value of thecosQualifier
for this attribute that isdefault, override, operational or merge-cos
.- Returns:
- the value of the
cosQualifier
.
-
setCosQualifier
Sets thecosQualifier
attribute- Parameters:
cosq
- value ofcosQualifier
.- Throws:
SMSException
- if an error is encountered when trying to set.SSOException
- if the single sign on token is invalid or expired
-
getDefaultValues
Returns the default values of the attribute. If there are no default values defined for this attribute in the schema then this method returns a Collections.EMPTY_SET- Returns:
- set of default values of the attribute
-
getDefaultValues
Returns the default values of the attribute for the given environment parameters. If there are no default values defined for this attribute in the schema then this method returns a Collections.EMPTY_SET- Parameters:
envParams
- Map of environment parameter to a set of values- Returns:
- set of default values of the attribute
-
getExampleValues
Returns the example values of the attribute. If there are no example values defined for this attribute in the schema then this method returns a Collections.EMPTY_SET- Returns:
- set of example values of the attribute
-
setDefaultValues
Sets the default values of the attribute.- Parameters:
values
- the set of default values- Throws:
SMSException
- if an error is encountered when trying to set.SSOException
- if the single sign on token is invalid or expired
-
addDefaultValue
Adds a default value to the existing set of default values.- Parameters:
value
- the default value to add- Throws:
SMSException
- if an error is encountered when trying to set.SSOException
- if the single sign on token is invalid or expired
-
removeDefaultValues
Removes the all the default values for the attribute.- Throws:
SMSException
- if an error is encountered when trying to set.SSOException
- if the single sign on token is invalid or expired
-
removeDefaultValue
Removes the given value from the set of default values.- Parameters:
value
- the default value to remove- Throws:
SMSException
- if an error is encountered when trying to set.SSOException
- if the single sign on token is invalid or expired
-
getChoiceValues
Returns the possible choice values for the attribute if the attribute type is eitherSINGLE_CHOICE
orMULTIPLE_CHOICE
.- Returns:
- set of possible choice values
-
getChoiceValues
Returns the possible choice values for the attribute if the attribute type is eitherSINGLE_CHOICE
orMULTIPLE_CHOICE
, for the given environment parameters.- Parameters:
envParams
- Map of environment parameter to a set of values- Returns:
- set of possible choice values
-
getChoiceValuesMap
Returns the possible choice values for the attribute if the attribute type is eitherSINGLE_CHOICE
orMULTIPLE_CHOICE
, for the given environment parameters, along with the values' i18n keys.- Parameters:
envParams
- Map of environment parameter to a set of values- Returns:
- Map of value to i18n key.
-
hasChoiceValues
public boolean hasChoiceValues()Indicates whether this AttributeSchema has choice values defined. -
getChoiceValueI18NKey
Returns the I18N key for the given choice value.- Parameters:
cValue
- choice value.- Returns:
- the I18N key for the given choice value
-
addChoiceValue
Adds a choice value and its i18n key to the existing set of choice values.- Parameters:
value
- the choice value to addi18nKey
- the I18N key for the choice value- Throws:
SMSException
- if an error is encountered when trying to set.SSOException
- if the single sign on token is invalid or expired
-
removeChoiceValue
Removes the given value from the set of choice values.- Parameters:
value
- the choice value to remove- Throws:
SMSException
- if an error is encountered when trying to set.SSOException
- if the single sign on token is invalid or expired
-
getStartRange
Returns the start range if the attribute syntax is eitherNUMBER_RANGE
orDECIMAL_RANGE
.- Returns:
- the start range for the attribute value
-
setStartRange
Sets the start range attribute.- Parameters:
stRange
- start range.- Throws:
SMSException
- if an error is encountered when trying to setSSOException
- if the single sign on token is invalid or expired
-
getEndRange
Returns the end range if the attribute syntax is eitherNUMBER_RANGE
orDECIMAL_RANGE
.- Returns:
- the end range for the attribute value
-
setEndRange
Sets the end range Attribute.- Parameters:
edRange
- end range.- Throws:
SMSException
- if an error is encountered when trying to setSSOException
- if the single sign on token is invalid or expired
-
getValidator
Method to get the validator name for using to validate this service attribute- Returns:
- the validator name
-
setValidator
Sets the Validator attribute- Parameters:
valid
- validator- Throws:
SMSException
- if an error is encountered when trying to setSSOException
- if the single sign on token is invalid or expired
-
getMinValue
public int getMinValue()Returns the minimum number of values for the attribute if the attribute is of typeMULTIPLE_CHOICE
.- Returns:
- the minimum number of values
-
setMinValue
Sets the minimum value attribute.- Parameters:
minV
- minimum value.- Throws:
SMSException
- if an error is encountered when trying to setSSOException
- if the single sign on token is invalid or expired
-
getMaxValue
public int getMaxValue()Returns the maximum number of values for the attribute if the attribute is of typeMULTIPLE_CHOICE
.- Returns:
- the maximum number of values
-
setMaxValue
Sets the maximum value attribute.- Parameters:
maxV
- maximum value.- Throws:
SMSException
- if an error is encountered when trying to setSSOException
- if the single sign on token is invalid or expired
-
setBooleanValues
public void setBooleanValues(String trueValue, String trueValueI18nKey, String falseValue, String falseValueI18nKey) throws SSOException, SMSException Sets the boolean values of the attribute.- Parameters:
trueValue
- string value forBooleanTrueValue
.trueValueI18nKey
-I18N
key forBooleanTrueValue
.falseValue
- string value forBooleanFalseValue
.falseValueI18nKey
-I18N
Key forBooleanFalseValue
.- Throws:
SMSException
- if an error is encountered when trying to set.SSOException
- if the single sign on token is invalid or expired
-
getTrueValue
Returns the string value forBooleanTrueValue
.- Returns:
- the string value for
BooleanTrueValue
.
-
getTrueValueI18NKey
Returns theI18N
key forBooleanTrueValue
.- Returns:
- the
I18N
key forBooleanTrueValue
.
-
getFalseValue
Returns the string value forBooleanFalseValue
.- Returns:
- the string value for
BooleanFalseValue
.
-
getFalseValueI18NKey
Returns theI18N
Key forBooleanFalseValue
.- Returns:
- the
I18N
Key forBooleanFalseValue
.
-
isOptional
public boolean isOptional()Returns true if the attribute is an optional attribute.- Returns:
- true if the attribute is an optional attribute.
-
isServiceIdentifier
public boolean isServiceIdentifier()Returns true if the attribute is a service identifier (i.e., in the case of LDAP it would be the COS Specifier attribute).- Returns:
- true if the attribute is service identifier attribute.
-
isResourceNameAllowed
public boolean isResourceNameAllowed()Checks if the attribute allows to have resource name.- Returns:
- true if the attribute allows to have resource name; false otherwise
-
isStatusAttribute
public boolean isStatusAttribute()Returns true if the attribute is a service's status attribute.- Returns:
- true if the attribute is a status attribute.
-
getAny
Method to get service specific attributes. It return the value of the "any" attribute, if set in the XML schema for the service- Returns:
- value of "any" attribute
-
setAny
Sets the any attribute.- Parameters:
a
- value for any attribute.- Throws:
SMSException
- if an error is encountered when trying to set.SSOException
- if the single sign on token is invalid or expired.
-
getPropertiesViewBeanURL
Returns URL of the view bean for the attribute.- Returns:
- URL for view bean
-
setPropertiesViewBeanUR
Sets the URL of the view bean for the attribute.- Parameters:
prop
- properties view bean URL.- Throws:
SMSException
- if an error is encountered when trying to set.SSOException
- if the single sign on token is invalid or expired.
-
isSearchable
public boolean isSearchable()Returnstrue
if the attribute is searchable;false
otherwise- Returns:
true
if the attribute is an optional attribute;false
otherwise
-
setSearchable
Sets the attribute isSearchable, if value is set totrue
, orfalse
.- Parameters:
value
- if set totrue
the attribute will be searchable; else searches cannot be performed on this attribute.- Throws:
SMSException
- if an error is encountered when trying to setSSOException
- if the single sign on token is invalid or expired
-
getResourceName
Returns the name of this attribute when used in a CREST representation. -
setResourceName
Sets the CREST representation name for the attribute.- Parameters:
name
- the name of the CREST property.- Throws:
SMSException
- if an error is encountered when trying to set.SSOException
- if the single sign on token is invalid or expired.
-
toString
Returns a string representation of thisAttributeSchema
object. -
updateDefaultValues
Method for modifying default values- Throws:
SMSException
SSOException
-
updateDefaultValues
protected void updateDefaultValues(Set<String> defaultValues, Document doc) throws SMSException, SSOException Method for modifying default values given the XML document- Throws:
SMSException
SSOException
-
updateChoiceValues
protected void updateChoiceValues(Map<String, String> choiceValues) throws SMSException, SSOException- Throws:
SMSException
SSOException
-
updateChoiceValues
protected void updateChoiceValues(Map<String, String> choiceValues, Document doc) throws SMSException, SSOException- Throws:
SMSException
SSOException
-
updateBooleanValues
protected void updateBooleanValues(String trueValue, String trueValueI18nKey, String falseValue, String falseValueI18nKey, Document doc) throws SMSException, SSOException - Throws:
SMSException
SSOException
-
getFlagEnablingAttribute
Returns the specified flagEnablingAttribute attribute, or null if not specified. The flagEnablingAttribute is the name of the system property that unless enabled (i.e. present and true), indicates that this attribute should be hidden/disabled.- Returns:
- The flag that will enable this attribute.
-
isHiddenByFeatureFlag
public Boolean isHiddenByFeatureFlag(com.iplanet.am.util.SystemPropertiesWrapper systemPropertiesWrapper) Return whether this attribute schema item should be considered hidden based on its flagEnablingAttribute value and the current value of the configured system property, if specified.- Parameters:
systemPropertiesWrapper
-SystemPropertiesWrapper
for retrieving server-specific system properties- Returns:
- Whether this attribute schema item is hidden by a system property flag
-
updateXMLDocument
protected void updateXMLDocument(StringBuffer sb, String elementName, Document updateDoc) throws SMSException, SSOException - Throws:
SMSException
SSOException
-
updateXMLDocument
protected void updateXMLDocument(String attrName, String attrValue) throws SMSException, SSOException update attribute value in attribute schema element- Throws:
SMSException
SSOException
-