public class ACIPropertyDefinition extends PropertyDefinition<Aci>
Modifier and Type | Class and Description |
---|---|
static class |
ACIPropertyDefinition.Builder
An interface for incrementally constructing ACI property
definitions.
|
PropertyDefinition.AbstractBuilder<T,D extends PropertyDefinition<T>>
Modifier and Type | Method and Description |
---|---|
<R,P> R |
accept(PropertyDefinitionVisitor<R,P> v,
P p)
Apply a visitor to this property definition.
|
<R,P> R |
accept(PropertyValueVisitor<R,P> v,
Aci value,
P p)
Apply a visitor to a property value associated with this property
definition.
|
int |
compare(Aci o1,
Aci o2)
Compares two property values for order.
|
static ACIPropertyDefinition.Builder |
createBuilder(AbstractManagedObjectDefinition<?,?> d,
String propertyName)
Create a ACI property definition builder.
|
Aci |
decodeValue(String value)
Parse and validate a string representation of a property value.
|
void |
validateValue(Aci value)
Determine if the provided property value is valid according to
this property definition.
|
castValue, compareTo, encodeValue, equals, getAdministratorAction, getDefaultBehaviorProvider, getDescription, getDescription, getManagedObjectDefinition, getName, getSynopsis, getSynopsis, hashCode, hasOption, initialize, normalizeValue, toString, toString
public static ACIPropertyDefinition.Builder createBuilder(AbstractManagedObjectDefinition<?,?> d, String propertyName)
d
- The managed object definition associated with this
property definition.propertyName
- The property name.public void validateValue(Aci value) throws PropertyException
validateValue
in class PropertyDefinition<Aci>
value
- The property value (must not be null
).PropertyException
- If the property value is invalid.public Aci decodeValue(String value) throws PropertyException
decodeValue
in class PropertyDefinition<Aci>
value
- The property string value (must not be null
).PropertyException
- If the property value string is invalid.public <R,P> R accept(PropertyDefinitionVisitor<R,P> v, P p)
accept
in class PropertyDefinition<Aci>
R
- The return type of the visitor's methods.P
- The type of the additional parameters to the visitor's
methods.v
- The property definition visitor.p
- Optional additional visitor parameter.public <R,P> R accept(PropertyValueVisitor<R,P> v, Aci value, P p)
accept
in class PropertyDefinition<Aci>
R
- The return type of the visitor's methods.P
- The type of the additional parameters to the visitor's
methods.v
- The property value visitor.value
- The property value.p
- Optional additional visitor parameter.public int compare(Aci o1, Aci o2)
This default implementation normalizes both values using
PropertyDefinition.normalizeValue(Object)
and then performs a
case-sensitive string comparison.
compare
in interface Comparator<Aci>
compare
in class PropertyDefinition<Aci>
o1
- the first object to be compared.o2
- the second object to be compared.Copyright © 2010-2016 ForgeRock AS. All Rights Reserved.