Class SchemaResource
- java.lang.Object
-
- io.jans.scim.model.scim2.BaseScimResource
-
- io.jans.scim.model.scim2.provider.schema.SchemaResource
-
public class SchemaResource extends BaseScimResource
A class used to represent a schema (that a given SCIM resource type adheres to). Unlike other core resources, this one contains complex objects within a sub-attribute. See section 7 of RFC 7643.
-
-
Constructor Summary
Constructors Constructor Description SchemaResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<SchemaAttribute>
getAttributes()
String
getDescription()
String
getName()
void
setAttributes(List<SchemaAttribute> attributes)
void
setDescription(String description)
void
setName(String name)
-
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)
-
getDescription
public String getDescription()
-
setDescription
public void setDescription(String description)
-
getAttributes
public List<SchemaAttribute> getAttributes()
-
setAttributes
public void setAttributes(List<SchemaAttribute> attributes)
-
-