|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Uses of ResourceDescriptor in com.unboundid.scim.data |
|---|
| Methods in com.unboundid.scim.data that return ResourceDescriptor | |
|---|---|
ResourceDescriptor |
BaseResource.getResourceDescriptor()
Retrieves the ResourceDescriptor for this resource. |
| Methods in com.unboundid.scim.data with parameters of type ResourceDescriptor | |
|---|---|
R |
ResourceFactory.createResource(ResourceDescriptor resourceDescriptor,
SCIMObject scimObject)
Creates a new SCIM resource instance from a SCIMObjectfor
the specified resource descriptor. |
| Constructors in com.unboundid.scim.data with parameters of type ResourceDescriptor | |
|---|---|
BaseResource(ResourceDescriptor resourceDescriptor)
Construct an empty BaseResource with the specified
ResourceDescriptor. |
|
BaseResource(ResourceDescriptor resourceDescriptor,
SCIMObject scimObject)
Construct a BaseResource with the specified
ResourceDescriptor and backed by the given
SCIMObject. |
|
GroupResource(ResourceDescriptor resourceDescriptor)
Construct an empty GroupResource with the specified
ResourceDescriptor. |
|
GroupResource(ResourceDescriptor resourceDescriptor,
SCIMObject scimObject)
Construct a GroupResource with the specified
ResourceDescriptor and backed by the given
SCIMObject. |
|
ServiceProviderConfig(ResourceDescriptor resourceDescriptor)
Construct an empty ServiceProviderConfig with the specified
ResourceDescriptor. |
|
ServiceProviderConfig(ResourceDescriptor resourceDescriptor,
SCIMObject scimObject)
Construct a ServiceProviderConfig with the specified
ResourceDescriptor and backed by the given
SCIMObject. |
|
UserResource(ResourceDescriptor resourceDescriptor)
Construct an empty UserResource with the specified
ResourceDescriptor. |
|
UserResource(ResourceDescriptor resourceDescriptor,
SCIMObject scimObject)
Construct a UserResource with the specified
ResourceDescriptor and backed by the given
SCIMObject. |
|
| Uses of ResourceDescriptor in com.unboundid.scim.marshal |
|---|
| Methods in com.unboundid.scim.marshal with parameters of type ResourceDescriptor | ||
|---|---|---|
|
Unmarshaller.unmarshal(InputStream inputStream,
ResourceDescriptor resourceDescriptor,
ResourceFactory<R> resourceFactory)
Reads a SCIM resource from an input stream. |
|
|
Unmarshaller.unmarshalResources(InputStream inputStream,
ResourceDescriptor resourceDescriptor,
ResourceFactory<R> resourceFactory)
Reads a SCIM query response from an input stream. |
|
| Uses of ResourceDescriptor in com.unboundid.scim.marshal.json |
|---|
| Methods in com.unboundid.scim.marshal.json with parameters of type ResourceDescriptor | ||
|---|---|---|
|
JsonUnmarshaller.unmarshal(InputStream inputStream,
ResourceDescriptor resourceDescriptor,
ResourceFactory<R> resourceFactory)
Reads a SCIM resource from an input stream. |
|
protected
|
JsonParser.unmarshal(org.json.JSONObject jsonObject,
ResourceDescriptor resourceDescriptor,
ResourceFactory<R> resourceFactory,
org.json.JSONArray defaultSchemas)
Read a SCIM resource from the specified JSON object. |
|
|
JsonUnmarshaller.unmarshalResources(InputStream inputStream,
ResourceDescriptor resourceDescriptor,
ResourceFactory<R> resourceFactory)
Reads a SCIM query response from an input stream. |
|
| Uses of ResourceDescriptor in com.unboundid.scim.marshal.xml |
|---|
| Methods in com.unboundid.scim.marshal.xml with parameters of type ResourceDescriptor | ||
|---|---|---|
|
XmlUnmarshaller.unmarshal(InputStream inputStream,
ResourceDescriptor resourceDescriptor,
ResourceFactory<R> resourceFactory)
Reads a SCIM resource from an input stream. |
|
|
XmlUnmarshaller.unmarshalResources(InputStream inputStream,
ResourceDescriptor resourceDescriptor,
ResourceFactory<R> resourceFactory)
Reads a SCIM query response from an input stream. |
|
| Uses of ResourceDescriptor in com.unboundid.scim.schema |
|---|
| Fields in com.unboundid.scim.schema declared as ResourceDescriptor | |
|---|---|
static ResourceDescriptor |
CoreSchema.GROUP_DESCRIPTOR
The SCIM Group Schema. |
static ResourceDescriptor |
CoreSchema.RESOURCE_SCHEMA_DESCRIPTOR
The SCIM Resource Schema. |
static ResourceDescriptor |
CoreSchema.SERVICE_PROVIDER_CONFIG_SCHEMA_DESCRIPTOR
The SCIM Service Provider Configuration Schema. |
static ResourceDescriptor |
CoreSchema.USER_DESCRIPTOR
The SCIM User Schema. |
| Fields in com.unboundid.scim.schema with type parameters of type ResourceDescriptor | |
|---|---|
static ResourceFactory<ResourceDescriptor> |
ResourceDescriptor.RESOURCE_DESCRIPTOR_FACTORY
A ResourceFactory for creating ResourceDescriptor
instances. |
| Methods in com.unboundid.scim.schema that return ResourceDescriptor | |
|---|---|
static ResourceDescriptor |
ResourceDescriptor.create(String name,
String description,
String schema,
String endpoint,
AttributeDescriptor... attributes)
Construct a new resource descriptor with the provided information. |
| Uses of ResourceDescriptor in com.unboundid.scim.sdk |
|---|
| Methods in com.unboundid.scim.sdk that return ResourceDescriptor | |
|---|---|
static ResourceDescriptor |
ResourceSchemaBackend.copyAndSetIdAndMetaAttributes(ResourceDescriptor resource,
ResourceReturningRequest request)
Make a copy of the ResourceDescriptor and set the id and meta attributes from the provided information. |
ResourceDescriptor |
ResourceSchemaBackend.getResource(GetResourceRequest request)
Retrieve all or selected attributes of a resource. |
ResourceDescriptor |
SCIMRequest.getResourceDescriptor()
Get ResourceDescriptor associated with this request. |
ResourceDescriptor |
BulkContentHandler.getResourceDescriptor(String endpoint)
Retrieve the resource descriptor for a given endpoint. |
ResourceDescriptor |
SCIMService.getResourceDescriptor(String resourceName,
String schema)
Retrieves the ResourceDescriptor for the specified resource from the SCIM service provider. |
| Methods in com.unboundid.scim.sdk that return types with arguments of type ResourceDescriptor | |
|---|---|
SCIMEndpoint<ResourceDescriptor> |
SCIMService.getResourceSchemaEndpoint()
Returns a SCIMEndpoint for the Schemas endpoint. |
| Methods in com.unboundid.scim.sdk with parameters of type ResourceDescriptor | ||
|---|---|---|
static ResourceDescriptor |
ResourceSchemaBackend.copyAndSetIdAndMetaAttributes(ResourceDescriptor resource,
ResourceReturningRequest request)
Make a copy of the ResourceDescriptor and set the id and meta attributes from the provided information. |
|
|
SCIMService.getEndpoint(ResourceDescriptor resourceDescriptor,
ResourceFactory<R> resourceFactory)
Returns a SCIMEndpoint with the current settings that can be used to invoke CRUD operations. |
|
| Constructors in com.unboundid.scim.sdk with parameters of type ResourceDescriptor | |
|---|---|
DeleteResourceRequest(URI baseURL,
String authenticatedUserID,
ResourceDescriptor resourceDescriptor,
String resourceID)
Create a new SCIM Delete Resource request from the provided information. |
|
GetResourceRequest(URI baseURL,
String authenticatedUserID,
ResourceDescriptor resourceDescriptor,
String resourceID,
SCIMQueryAttributes attributes)
Create a new SCIM Get Resource request from the provided information. |
|
GetResourcesRequest(URI baseURL,
String authenticatedUserID,
ResourceDescriptor resourceDescriptor,
SCIMFilter filter,
SortParameters sortParameters,
PageParameters pageParameters,
SCIMQueryAttributes attributes)
Create a new SCIM Get Resource request from the provided information. |
|
PostResourceRequest(URI baseURL,
String authenticatedUserID,
ResourceDescriptor resourceDescriptor,
SCIMObject resourceObject,
SCIMQueryAttributes attributes)
Create a new SCIM Post Resource request from the provided information. |
|
PutResourceRequest(URI baseURL,
String authenticatedUserID,
ResourceDescriptor resourceDescriptor,
String resourceID,
SCIMObject resourceObject,
SCIMQueryAttributes attributes)
Create a new SCIM Put Resource request from the provided information. |
|
ResourceReturningRequest(URI baseURL,
String authenticatedUserID,
ResourceDescriptor resourceDescriptor,
SCIMQueryAttributes attributes)
Create a new SCIM request from the provided information. |
|
SCIMQueryAttributes(ResourceDescriptor resourceDescriptor,
String attributes)
Create a new instance of query attributes from their string representation. |
|
SCIMRequest(URI baseURL,
String authenticatedUserID,
ResourceDescriptor resourceDescriptor)
Create a new SCIM request from the provided information. |
|
| Constructor parameters in com.unboundid.scim.sdk with type arguments of type ResourceDescriptor | |
|---|---|
ResourceSchemaBackend(Collection<ResourceDescriptor> resourceDescriptors)
Create a new ResourceSchemaBackend that serves up the schema provided from the ResourceDescriptors. |
|
| Uses of ResourceDescriptor in com.unboundid.scim.sdk.examples |
|---|
| Constructors in com.unboundid.scim.sdk.examples with parameters of type ResourceDescriptor | |
|---|---|
ClientExample.DeviceResource(ResourceDescriptor resourceDescriptor)
Create a new empty device resource. |
|
ClientExample.DeviceResource(ResourceDescriptor resourceDescriptor,
SCIMObject scimObject)
Create a device resource based on the provided SCIMObject. |
|
| Uses of ResourceDescriptor in com.unboundid.scim.wink |
|---|
| Methods in com.unboundid.scim.wink that return ResourceDescriptor | |
|---|---|
ResourceDescriptor |
BulkContentRequestHandler.getResourceDescriptor(String endpoint)
Retrieve the resource descriptor for a given endpoint. |
| Methods in com.unboundid.scim.wink that return types with arguments of type ResourceDescriptor | |
|---|---|
Map<String,ResourceDescriptor> |
SCIMApplication.getDescriptors()
Retrieve the resource descriptors keyed by name of endpoint. |
| Constructors in com.unboundid.scim.wink with parameters of type ResourceDescriptor | |
|---|---|
AbstractSCIMResource(String path,
ResourceDescriptor resourceDescriptor,
ResourceStats resourceStats,
SCIMBackend backend)
Create a new AbstractSCIMResource for CRUD operations. |
|
JSONQueryResource(ResourceDescriptor resourceDescriptor,
ResourceStats resourceStats,
SCIMBackend backend)
Create a new SCIM wink resource for XML query operations on a SCIM endpoint. |
|
SCIMResource(ResourceDescriptor resourceDescriptor,
ResourceStats resourceStats,
SCIMBackend backend)
Create a new SCIM wink resource for operations on a SCIM endpoint. |
|
XMLQueryResource(ResourceDescriptor resourceDescriptor,
ResourceStats resourceStats,
SCIMBackend backend)
Create a new SCIM wink resource for XML query operations on a SCIM endpoint. |
|
| Constructor parameters in com.unboundid.scim.wink with type arguments of type ResourceDescriptor | |
|---|---|
SCIMApplication(Collection<ResourceDescriptor> resourceDescriptors,
SCIMBackend backend)
Create a new SCIMApplication that defines the endpoints provided by the ResourceDescriptors and uses the provided backend to process the request. |
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||