Annotation Interface ConfigurationProperty
The
Configuration
interface is traversed through reflection. This
annotation provides a way to override the default configuration operation for
each property.- Since:
- 1.0
- Version:
- $Revision: /main/3 $
- Author:
- Will Droste
-
Optional Element Summary
Optional ElementsModifier and TypeOptional ElementDescriptionString[]
List of attributes for which this property must be specified.boolean
Is this a confidential property whose value should be encrypted by the application when persisted?Change the default display message key.Change the default help message key.String[]
List of object classes for which this property must be specified.Class<? extends SPIOperation>[]
List of operations for which this property must be specified.int
Order in which this property is displayed.boolean
Is this property required?
-
Element Details
-
order
int orderOrder in which this property is displayed.- Default:
- -1
-
helpMessageKey
String helpMessageKeyChange the default help message key.- Default:
- ""
-
displayMessageKey
String displayMessageKeyChange the default display message key.- Default:
- ""
-
confidential
boolean confidentialIs this a confidential property whose value should be encrypted by the application when persisted?- Default:
- false
-
required
boolean requiredIs this property required?- Returns:
- True iff the property is required
- Default:
- false
-
operations
Class<? extends SPIOperation>[] operationsList 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.- Default:
- {}
-
objectClasses
String[] objectClassesList of object classes for which this property must be specified. The default value of "empty array" is special in that it means that this property is applicable to all object classes.- Default:
- {}
-
attributes
String[] attributesList of attributes for which this property must be specified. The default value of "empty array" is special in that it means that this property is applicable to all attributes.- Default:
- {}
-