Uses of Class
com.unboundid.scim.schema.AttributeDescriptor

Packages that use AttributeDescriptor
com.unboundid.scim.data   
com.unboundid.scim.marshal.json   
com.unboundid.scim.schema   
com.unboundid.scim.sdk   
 

Uses of AttributeDescriptor in com.unboundid.scim.data
 

Methods in com.unboundid.scim.data with parameters of type AttributeDescriptor
abstract  SCIMAttributeValue AttributeValueResolver.fromInstance(AttributeDescriptor attributeDescriptor, T value)
          Create a SCIM attribute value from the given instance.
 

Uses of AttributeDescriptor in com.unboundid.scim.marshal.json
 

Methods in com.unboundid.scim.marshal.json with parameters of type AttributeDescriptor
protected  SCIMAttribute JsonParser.create(AttributeDescriptor descriptor, Object jsonAttribute)
          Create a SCIM attribute from its JSON object representation.
protected  SCIMAttributeValue JsonParser.createComplexAttribute(org.json.JSONObject jsonAttribute, AttributeDescriptor attributeDescriptor)
          Parse a complex attribute from its representation as a JSON Object.
protected  SCIMAttribute JsonParser.createMutiValuedAttribute(org.json.JSONArray jsonAttribute, AttributeDescriptor attributeDescriptor)
          Parse a multi-valued attribute from its representation as a JSON Object.
protected  SCIMAttribute JsonBulkParser.createSimpleAttribute(Object jsonAttribute, AttributeDescriptor attributeDescriptor)
          Parse a simple attribute from its representation as a JSON Object.
protected  SCIMAttribute JsonParser.createSimpleAttribute(Object jsonAttribute, AttributeDescriptor attributeDescriptor)
          Parse a simple attribute from its representation as a JSON Object.
 

Uses of AttributeDescriptor in com.unboundid.scim.schema
 

Fields in com.unboundid.scim.schema declared as AttributeDescriptor
static AttributeDescriptor CoreSchema.ID_DESCRIPTOR
          The SCIM AttributeDescriptor for the id attribute.
static AttributeDescriptor CoreSchema.META_DESCRIPTOR
          The SCIM AttributeDescriptor for the meta attribute.
 

Fields in com.unboundid.scim.schema with type parameters of type AttributeDescriptor
static AttributeValueResolver<AttributeDescriptor> AttributeDescriptor.ATTRIBUTE_DESCRIPTOR_RESOLVER
          The AttributeValueResolver that resolves SCIM attribute values to/from AttributeDescriptor instances.
 

Methods in com.unboundid.scim.schema that return AttributeDescriptor
static AttributeDescriptor AttributeDescriptor.createAttribute(String name, AttributeDescriptor.DataType dataType, String description, String schema, boolean readOnly, boolean required, boolean caseExact, AttributeDescriptor... subAttributes)
          Create a new complex attribute descriptor with the provided information.
static AttributeDescriptor AttributeDescriptor.createMultiValuedAttribute(String name, String multiValuedChildName, AttributeDescriptor.DataType dataType, String description, String schema, boolean readOnly, boolean required, boolean caseExact, String[] canonicalValues, AttributeDescriptor... subAttributes)
          Create a new multi-valued attribute descriptor with the provided information.
static AttributeDescriptor AttributeDescriptor.createSubAttribute(String name, AttributeDescriptor.DataType dataType, String description, String schema, boolean readOnly, boolean required, boolean caseExact, String... canonicalValues)
          Create a new simple attribute descriptor with the provided information.
 AttributeDescriptor ResourceDescriptor.getAttribute(String schema, String name)
          Retrieves the attribute descriptor for a specified attribute.
 AttributeDescriptor AttributeDescriptor.getSubAttribute(String externalName)
          Retrieves the attribute descriptor for a specified subordinate attribute of a complex attribute.
 

Methods in com.unboundid.scim.schema that return types with arguments of type AttributeDescriptor
 Collection<AttributeDescriptor> ResourceDescriptor.getAttributes()
          Retrieves the list of all attribute descriptors defined in the resource.
 Collection<AttributeDescriptor> ResourceDescriptor.getAttributes(String schema)
          Retrieves all the attribute descriptors of the provided schema defined in the resource.
 Collection<AttributeDescriptor> AttributeDescriptor.getSubAttributes()
          Retrieves the set of descriptors for subordinate attributes of a complex attribute.
 

Methods in com.unboundid.scim.schema with parameters of type AttributeDescriptor
static ResourceDescriptor ResourceDescriptor.create(String name, String description, String schema, String endpoint, AttributeDescriptor... attributes)
          Construct a new resource descriptor with the provided information.
static AttributeDescriptor AttributeDescriptor.createAttribute(String name, AttributeDescriptor.DataType dataType, String description, String schema, boolean readOnly, boolean required, boolean caseExact, AttributeDescriptor... subAttributes)
          Create a new complex attribute descriptor with the provided information.
static AttributeDescriptor AttributeDescriptor.createMultiValuedAttribute(String name, String multiValuedChildName, AttributeDescriptor.DataType dataType, String description, String schema, boolean readOnly, boolean required, boolean caseExact, String[] canonicalValues, AttributeDescriptor... subAttributes)
          Create a new multi-valued attribute descriptor with the provided information.
 

Uses of AttributeDescriptor in com.unboundid.scim.sdk
 

Methods in com.unboundid.scim.sdk that return AttributeDescriptor
 AttributeDescriptor SCIMAttribute.getAttributeDescriptor()
          Retrieves the SCIM attribute mapping of this this attribute.
 

Methods in com.unboundid.scim.sdk with parameters of type AttributeDescriptor
static SCIMAttribute SCIMAttribute.create(AttributeDescriptor descriptor, SCIMAttributeValue... values)
          Create an attribute.
 boolean SCIMQueryAttributes.isAttributeRequested(AttributeDescriptor attributeDescriptor)
          Determine whether the specified attribute is requested by these query attributes.
 



Copyright © 2011-2012 UnboundID. All Rights Reserved.