Class ConfigurationPropertyImpl
java.lang.Object
org.identityconnectors.framework.impl.api.ConfigurationPropertyImpl
- All Implemented Interfaces:
ConfigurationProperty
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Returns list of allowed values for the property.getDisplayName
(String def) Get the display name for this configuration property.Get name of the group for this configuration property.getHelpMessage
(String def) Get the help message from the message catalog.getName()
Get the unique name of the configuration property.Set
<Class<? extends APIOperation>> Set of operations for which this property must be specified.int
getOrder()
Class
<?> getType()
Get the type of the property.getValue()
Get the value from the property.int
hashCode()
boolean
Is this a confidential property whose value should be encrypted by the application when persisted?boolean
Is this a required propertyvoid
setAllowedValues
(SuggestedValues allowedValues) void
setConfidential
(boolean confidential) void
void
setGroupMessageKey
(String key) void
setHelpMessageKey
(String key) void
void
setOperations
(Set<Class<? extends APIOperation>> set) void
setOrder
(int order) void
setParent
(ConfigurationPropertiesImpl parent) void
setRequired
(boolean v) void
void
Set the value of the property.
-
Constructor Details
-
ConfigurationPropertyImpl
public ConfigurationPropertyImpl()
-
-
Method Details
-
getOrder
public int getOrder() -
setOrder
public void setOrder(int order) -
setConfidential
public void setConfidential(boolean confidential) -
setName
-
getHelpMessageKey
-
setHelpMessageKey
-
getDisplayMessageKey
-
setDisplayMessageKey
-
getGroupMessageKey
-
setGroupMessageKey
-
setType
-
getParent
-
setParent
-
getOperations
Description copied from interface:ConfigurationProperty
Set of operations for which this property must be specified. This is used for the case where a connector may or may not implement certain operations depending in the configuration. The default value of "empty array" is special in that it means that this property is applicable to all operations.- Specified by:
getOperations
in interfaceConfigurationProperty
-
isRequired
public boolean isRequired()Description copied from interface:ConfigurationProperty
Is this a required property- Specified by:
isRequired
in interfaceConfigurationProperty
- Returns:
- True if the property is required
-
setRequired
public void setRequired(boolean v) -
setOperations
-
setAllowedValues
-
isConfidential
public boolean isConfidential()Is this a confidential property whose value should be encrypted by the application when persisted?- Specified by:
isConfidential
in interfaceConfigurationProperty
-
getName
Get the unique name of the configuration property.- Specified by:
getName
in interfaceConfigurationProperty
-
getType
Get the type of the property.- Specified by:
getType
in interfaceConfigurationProperty
-
getValue
Get the value from the property. This value should be the default value.- Specified by:
getValue
in interfaceConfigurationProperty
-
setValue
Set the value of the property.- Specified by:
setValue
in interfaceConfigurationProperty
-
getHelpMessage
Get the help message from the message catalog.- Specified by:
getHelpMessage
in interfaceConfigurationProperty
-
getDisplayName
Get the display name for this configuration property.- Specified by:
getDisplayName
in interfaceConfigurationProperty
-
getGroup
Get name of the group for this configuration property.- Specified by:
getGroup
in interfaceConfigurationProperty
-
getAllowedValues
Returns list of allowed values for the property. If a closed list is returned, values specified in the list are the only valid values for the property. Any other value is invalid. If an open list is returned, the values specified in the list should be considered suggestions only. Even an unlisted value can be specified as a valid value of the property. If null is returned, there are no restrictions or suggestions for this property.- Specified by:
getAllowedValues
in interfaceConfigurationProperty
-
hashCode
public int hashCode() -
equals
-