public class AttributeSchema extends Object
AttributeSchema
provides methods to access the
schema of a configuration parameter. Also, it provides methods to set default
and choice values.Modifier | Constructor and Description |
---|---|
protected |
AttributeSchema(AttributeSchemaImpl as,
PluginSchema ps) |
protected |
AttributeSchema(AttributeSchemaImpl as,
ServiceSchemaManager ssm,
ServiceSchema ss)
Constructor used by ServiceSchema to instantiate
AttributeSchema objects. |
Modifier and Type | Method and Description |
---|---|
void |
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.
|
String |
getAny()
Method to get service specific attributes.
|
String |
getChoiceValueI18NKey(String cValue)
Returns the I18N key for the given choice value.
|
String[] |
getChoiceValues()
Returns the possible choice values for the attribute if the attribute
type is either
SINGLE_CHOICE or
MULTIPLE_CHOICE . |
String[] |
getChoiceValues(Map envParams)
Returns the possible choice values for the attribute if the attribute
type is either
SINGLE_CHOICE or
MULTIPLE_CHOICE , for the given environment parameters. |
Map<String,String> |
getChoiceValuesMap(Map<String,Object> envParams)
Returns the possible choice values for the attribute if the attribute
type is either
SINGLE_CHOICE or
MULTIPLE_CHOICE , for the given environment parameters,
along with the values' i18n keys. |
String |
getCosQualifier()
Returns the value of the
cosQualifier for this attribute
that is default, override, operational or merge-cos . |
Set |
getDefaultValues()
Returns the default values of the attribute.
|
Set |
getDefaultValues(Map envParams)
Returns the default values of the attribute for the given environment
parameters.
|
String |
getEndRange()
Returns the end range if the attribute syntax is either
NUMBER_RANGE or DECIMAL_RANGE . |
Set<String> |
getExampleValues()
Returns the example values of the attribute.
|
String |
getFalseValue()
Returns the string value for
BooleanFalseValue . |
String |
getFalseValueI18NKey()
Returns the
I18N Key for BooleanFalseValue . |
String |
getI18NKey()
Returns the I18N key to describe the configuration attribute.
|
AttributeSchema.ListOrder |
getListOrder()
Returns the list order of the attribute.
|
int |
getMaxValue()
Returns the maximum number of values for the attribute if the attribute
is of type
MULTIPLE_CHOICE . |
int |
getMinLength()
Returns the required minimum lenght of the attribute value
|
int |
getMinValue()
Returns the minimum number of values for the attribute if the attribute
is of type
MULTIPLE_CHOICE . |
String |
getName()
Returns the name of the attribute.
|
Integer |
getOrder()
Returns the order of this attribute.
|
String |
getPropertiesViewBeanURL()
Returns URL of the view bean for the attribute.
|
String |
getResourceName()
Returns the name of this attribute when used in a CREST representation.
|
ServiceSchema |
getServiceSchema()
Returns Service Schema.
|
String |
getStartRange()
Returns the start range if the attribute syntax is either
NUMBER_RANGE or DECIMAL_RANGE . |
AttributeSchema.Syntax |
getSyntax()
Returns the syntax of the attribute.
|
String |
getTrueValue()
Returns the string value for
BooleanTrueValue . |
String |
getTrueValueI18NKey()
Returns the
I18N key for BooleanTrueValue . |
AttributeSchema.Type |
getType()
Returns the type of the attribute.
|
AttributeSchema.UIType |
getUIType()
Returns the UI type of the attribute.
|
String |
getValidator()
Method to get the validator name for using to validate this service
attribute
|
boolean |
hasChoiceValues()
Indicates whether this AttributeSchema has choice values defined.
|
boolean |
isHiddenInConfigUI()
Should this attribute schema be hidden in the Configuration UI.
|
boolean |
isOptional()
Returns true if the attribute is an optional attribute.
|
boolean |
isResourceNameAllowed()
Checks if the attribute allows to have resource name.
|
boolean |
isSearchable()
Returns
true if the attribute is searchable;
false otherwise |
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).
|
boolean |
isStatusAttribute()
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 |
removeDefaultValues()
Removes the all the default values for the attribute.
|
void |
setAny(String a)
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 the
cosQualifier attribute |
void |
setDefaultValues(Set 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 |
setOrder(Integer order)
Sets the order of this attribute.
|
void |
setPropertiesViewBeanUR(String prop)
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 to
true
,
or false . |
void |
setStartRange(String stRange)
Sets the start range attribute.
|
void |
setSyntax(String synt)
Sets the Syntax attribute.
|
void |
setType(String type)
Sets the type.
|
void |
setUIType(String uiType)
Sets the
UIType attribute. |
void |
setValidator(String valid)
Sets the Validator attribute
|
String |
toString()
Returns a string representation of this
AttributeSchema
object. |
protected void |
updateBooleanValues(String trueValue,
String trueValueI18nKey,
String falseValue,
String falseValueI18nKey,
Document doc) |
protected void |
updateChoiceValues(Map choiceValues) |
protected void |
updateChoiceValues(Map choiceValues,
Document doc) |
protected void |
updateDefaultValues(Set defaultValues)
Method for modifying default values
|
protected void |
updateDefaultValues(Set defaultValues,
Document doc)
Method for modifying default values given the XML document
|
protected void |
updateXMLDocument(StringBuffer sb,
String elementName,
Document updateDoc) |
protected void |
updateXMLDocument(String attrName,
String attrValue)
update attribute value in attribute schema element
|
protected AttributeSchema(AttributeSchemaImpl as, ServiceSchemaManager ssm, ServiceSchema ss)
AttributeSchema
objects.protected AttributeSchema(AttributeSchemaImpl as, PluginSchema ps)
public String getName()
public boolean isHiddenInConfigUI()
public AttributeSchema.Type getType()
public ServiceSchema getServiceSchema()
public void setType(String type) throws SMSException, SSOException
type
- to be changed toSMSException
- if an error is encountered when trying to setSSOException
- if the single sign on token is invalid or expiredpublic AttributeSchema.ListOrder getListOrder()
null
if the list order is not defined.public AttributeSchema.UIType getUIType()
public void setUIType(String uiType) throws SMSException, SSOException
UIType
attribute.uiType
- user interface type.SMSException
- if an error is encountered when trying to set
UIType
to the attribute schema.SSOException
- if the single sign on token is invalid or expiredpublic AttributeSchema.Syntax getSyntax()
public int getMinLength()
public void setSyntax(String synt) throws SMSException, SSOException
synt
- syntaxSMSException
- if an error is encountered when trying to set the attribute
syntaxSSOException
- if the single sign on token is invalid or expiredpublic String getI18NKey()
public Integer getOrder()
public void setI18NKey(String i18nKey) throws SMSException, SSOException
i18nKey
- the I18N key to describe the attributeSMSException
- if an error is encountered when trying to set I18N key to the
attribute schemaSSOException
- if the single sign on token is invalid or expiredpublic void setOrder(Integer order) throws SMSException, SSOException
order
- the integer value representing the orderSMSException
- if an error is encounteredSSOException
- if the single sign on token is invalid or expiredpublic String getCosQualifier()
cosQualifier
for this attribute
that is default, override, operational or merge-cos
.cosQualifier
.public void setCosQualifier(String cosq) throws SMSException, SSOException
cosQualifier
attributecosq
- value of cosQualifier
.SMSException
- if an error is encountered when trying to set.SSOException
- if the single sign on token is invalid or expiredpublic Set getDefaultValues()
public Set getDefaultValues(Map envParams)
envParams
- Map of environment parameter to a set of valuespublic Set<String> getExampleValues()
public void setDefaultValues(Set values) throws SMSException, SSOException
values
- the set of default valuesSMSException
- if an error is encountered when trying to set.SSOException
- if the single sign on token is invalid or expiredpublic void addDefaultValue(String value) throws SMSException, SSOException
value
- the default value to addSMSException
- if an error is encountered when trying to set.SSOException
- if the single sign on token is invalid or expiredpublic void removeDefaultValues() throws SMSException, SSOException
SMSException
- if an error is encountered when trying to set.SSOException
- if the single sign on token is invalid or expiredpublic void removeDefaultValue(String value) throws SMSException, SSOException
value
- the default value to removeSMSException
- if an error is encountered when trying to set.SSOException
- if the single sign on token is invalid or expiredpublic String[] getChoiceValues()
SINGLE_CHOICE
or
MULTIPLE_CHOICE
.public String[] getChoiceValues(Map envParams)
SINGLE_CHOICE
or
MULTIPLE_CHOICE
, for the given environment parameters.envParams
- Map of environment parameter to a set of valuespublic Map<String,String> getChoiceValuesMap(Map<String,Object> envParams)
SINGLE_CHOICE
or
MULTIPLE_CHOICE
, for the given environment parameters,
along with the values' i18n keys.envParams
- Map of environment parameter to a set of valuespublic boolean hasChoiceValues()
public String getChoiceValueI18NKey(String cValue)
cValue
- choice value.public void addChoiceValue(String value, String i18nKey) throws SMSException, SSOException
value
- the choice value to addi18nKey
- the I18N key for the choice valueSMSException
- if an error is encountered when trying to set.SSOException
- if the single sign on token is invalid or expiredpublic void removeChoiceValue(String value) throws SMSException, SSOException
value
- the choice value to removeSMSException
- if an error is encountered when trying to set.SSOException
- if the single sign on token is invalid or expiredpublic String getStartRange()
NUMBER_RANGE
or DECIMAL_RANGE
.public void setStartRange(String stRange) throws SMSException, SSOException
stRange
- start range.SMSException
- if an error is encountered when trying to setSSOException
- if the single sign on token is invalid or expiredpublic String getEndRange()
NUMBER_RANGE
or DECIMAL_RANGE
.public void setEndRange(String edRange) throws SMSException, SSOException
edRange
- end range.SMSException
- if an error is encountered when trying to setSSOException
- if the single sign on token is invalid or expiredpublic String getValidator()
public void setValidator(String valid) throws SMSException, SSOException
valid
- validatorSMSException
- if an error is encountered when trying to setSSOException
- if the single sign on token is invalid or expiredpublic int getMinValue()
MULTIPLE_CHOICE
.public void setMinValue(String minV) throws SMSException, SSOException
minV
- minimum value.SMSException
- if an error is encountered when trying to setSSOException
- if the single sign on token is invalid or expiredpublic int getMaxValue()
MULTIPLE_CHOICE
.public void setMaxValue(String maxV) throws SMSException, SSOException
maxV
- maximum value.SMSException
- if an error is encountered when trying to setSSOException
- if the single sign on token is invalid or expiredpublic void setBooleanValues(String trueValue, String trueValueI18nKey, String falseValue, String falseValueI18nKey) throws SSOException, SMSException
trueValue
- string value for BooleanTrueValue
.trueValueI18nKey
- I18N
key for
BooleanTrueValue
.falseValue
- string value for BooleanFalseValue
.falseValueI18nKey
- I18N
Key for
BooleanFalseValue
.SMSException
- if an error is encountered when trying to set.SSOException
- if the single sign on token is invalid or expiredpublic String getTrueValue()
BooleanTrueValue
.BooleanTrueValue
.public String getTrueValueI18NKey()
I18N
key for BooleanTrueValue
.I18N
key for BooleanTrueValue
.public String getFalseValue()
BooleanFalseValue
.BooleanFalseValue
.public String getFalseValueI18NKey()
I18N
Key for BooleanFalseValue
.I18N
Key for BooleanFalseValue
.public boolean isOptional()
public boolean isServiceIdentifier()
public boolean isResourceNameAllowed()
public boolean isStatusAttribute()
public String getAny()
public void setAny(String a) throws SMSException, SSOException
a
- value for any attribute.SMSException
- if an error is encountered when trying to set.SSOException
- if the single sign on token is invalid or expired.public String getPropertiesViewBeanURL()
public void setPropertiesViewBeanUR(String prop) throws SMSException, SSOException
prop
- properties view bean URL.SMSException
- if an error is encountered when trying to set.SSOException
- if the single sign on token is invalid or expired.public boolean isSearchable()
true
if the attribute is searchable;
false
otherwisetrue
if the attribute is an optional attribute;
false
otherwisepublic void setSearchable(String value) throws SMSException, SSOException
true
,
or false
.value
- if set to true
the attribute will be
searchable; else searches cannot be performed on this
attribute.SMSException
- if an error is encountered when trying to setSSOException
- if the single sign on token is invalid or expiredpublic String getResourceName()
public void setResourceName(String name) throws SSOException, SMSException
name
- the name of the CREST property.SMSException
- if an error is encountered when trying to set.SSOException
- if the single sign on token is invalid or expired.public String toString()
AttributeSchema
object.protected void updateDefaultValues(Set defaultValues) throws SMSException, SSOException
SMSException
SSOException
protected void updateDefaultValues(Set defaultValues, Document doc) throws SMSException, SSOException
SMSException
SSOException
protected void updateChoiceValues(Map choiceValues) throws SMSException, SSOException
SMSException
SSOException
protected void updateChoiceValues(Map choiceValues, Document doc) throws SMSException, SSOException
SMSException
SSOException
protected void updateBooleanValues(String trueValue, String trueValueI18nKey, String falseValue, String falseValueI18nKey, Document doc) throws SMSException, SSOException
SMSException
SSOException
protected void updateXMLDocument(StringBuffer sb, String elementName, Document updateDoc) throws SMSException, SSOException
SMSException
SSOException
protected void updateXMLDocument(String attrName, String attrValue) throws SMSException, SSOException
SMSException
SSOException
Copyright © 2010-2018, ForgeRock All Rights Reserved.