Class ExtensionField
- java.lang.Object
-
- io.jans.scim.model.scim2.extensions.ExtensionField
-
public class ExtensionField extends Object
Represents the metadata of an attribute that belongs to a SCIM resource extension.Attributes part of extensions, aka "extended attributes" or "custom attributes" have implicit characteristics equal to the defaults shown in section 2.2 of RFC 7643. In other words, all custom attributes have:
- canonicalValues: none assigned
- required: false
- caseExact: false
- mutability: readWrite
- returned: default
- uniqueness: none
- referenceTypes: none
The only "configurable" characteristics supported are:
- multivalued: true/false
- type: reference, string, datetime, decimal, and boolean (only).
See also:
Extension
class.
-
-
Constructor Summary
Constructors Constructor Description ExtensionField()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description AttributeDefinition.Type
getAttributeDefinitionType()
Maps the io.jans.model.attribute.AttributeDataType associated to this ExtensionField (seegetType
) to a member of the enumAttributeDefinition.Type
.String
getDescription()
String
getName()
io.jans.model.attribute.AttributeDataType
getType()
boolean
isMultiValued()
void
setDescription(String description)
void
setMultiValued(boolean multiValued)
void
setName(String name)
void
setType(io.jans.model.attribute.AttributeDataType type)
static String
stringValueOf(ExtensionField field, Object val)
Deprecated.static Object
valueFromString(ExtensionField field, String val)
Equivalent tovalueOf
, however, a String is supplied as value.static Object
valueOf(ExtensionField field, Object val)
Tries parsing the value passed according to the data type associated to the field
-
-
-
Method Detail
-
valueOf
public static Object valueOf(ExtensionField field, Object val)
Tries parsing the value passed according to the data type associated to the field- Parameters:
field
- An ExtensionField instance that determines the data type expected to be receivedval
- A non-null object that represents a (hopefully valid) value for this field- Returns:
- Null if the value is not consistent with the data type expected. Otherwise, the same value received is returned
-
valueFromString
public static Object valueFromString(ExtensionField field, String val)
Equivalent tovalueOf
, however, a String is supplied as value. Here no validations on data type consistence takes place (it is expected that value passed reflects the type of the field). If the field is a DATE, a conversion from ISO format is done, nonetheless, DATE fields still remain being represented as Java strings- Parameters:
field
- An ExtensionFieldval
- A non-null String value- Returns:
- A value
-
stringValueOf
public static String stringValueOf(ExtensionField field, Object val)
Deprecated.Takes an object and a ExtensionField, and returns a String (suitable for storing in LDAP). For a field data type NUMERIC, BOOLEAN or STRING, a straight string representation is returned. When it's DATE, it is converted from ISO to generalized date time format.- Parameters:
field
- An instance of ExtensionFieldval
- A value- Returns:
- String formated properly
-
getAttributeDefinitionType
public AttributeDefinition.Type getAttributeDefinitionType()
Maps the io.jans.model.attribute.AttributeDataType associated to this ExtensionField (see
getType
) to a member of the enumAttributeDefinition.Type
.The mapping is straightforward. Special case is io.jans.model.attribute.AttributeDataType.NUMERIC mapped to
Type.DECIMAL
.- Returns:
- An enum value of AttributeDefinition.Type
-
getName
public String getName()
-
setName
public void setName(String name)
-
isMultiValued
public boolean isMultiValued()
-
getType
public io.jans.model.attribute.AttributeDataType getType()
-
setMultiValued
public void setMultiValued(boolean multiValued)
-
setType
public void setType(io.jans.model.attribute.AttributeDataType type)
-
getDescription
public String getDescription()
-
setDescription
public void setDescription(String description)
-
-