Class ResourceType
- java.lang.Object
-
- io.jans.scim.model.scim2.BaseScimResource
-
- io.jans.scim.model.scim2.provider.resourcetypes.ResourceType
-
public class ResourceType extends BaseScimResource
This class is used to specify metadata about a resource type. It's the key class for representing the output of the/ResourceTypes
endpoint. For more about this resource type see RFC 7643, section 6.
-
-
Constructor Summary
Constructors Constructor Description ResourceType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDescription()
String
getEndpoint()
String
getName()
String
getSchema()
List<SchemaExtensionHolder>
getSchemaExtensions()
void
setDescription(String description)
void
setEndpoint(String endpoint)
void
setName(String name)
void
setSchema(String schema)
void
setSchemaExtensions(List<SchemaExtensionHolder> schemaExtensions)
-
Methods inherited from class io.jans.scim.model.scim2.BaseScimResource
addCustomAttributes, addCustomAttributes, getCustomAttributes, getCustomAttributes, getExternalId, getId, getMeta, getSchemas, setExternalId, setId, setMeta, setSchemas
-
-
-
-
Method Detail
-
getName
public String getName()
-
setName
public void setName(String name)
-
getEndpoint
public String getEndpoint()
-
setEndpoint
public void setEndpoint(String endpoint)
-
getDescription
public String getDescription()
-
setDescription
public void setDescription(String description)
-
getSchema
public String getSchema()
-
setSchema
public void setSchema(String schema)
-
getSchemaExtensions
public List<SchemaExtensionHolder> getSchemaExtensions()
-
setSchemaExtensions
public void setSchemaExtensions(List<SchemaExtensionHolder> schemaExtensions)
-
-