| Modifier and Type | Method and Description |
|---|---|
static Attribute |
DefaultAttributeFactory.createAttribute(AttributeSchema attributeSchema,
AbstractAttribute attribute) |
protected static SimpleAttribute |
DefaultAttributeFactory.createSimpleAttribute(AttributeSchema attributeSchema,
SimpleAttribute simpleAttribute)
Once identified that constructing attribute is a simple attribute & related attribute schema is a
SCIMAttributeSchema, perform attribute construction operations specific to Simple Attribute.
|
void |
MultiValuedAttribute.deletePrimitiveValues() |
void |
Attribute.deleteSubAttributes() |
void |
ComplexAttribute.deleteSubAttributes() |
void |
SimpleAttribute.deleteSubAttributes() |
void |
MultiValuedAttribute.deleteSubAttributes() |
Boolean |
SimpleAttribute.getBooleanValue() |
Date |
SimpleAttribute.getDateValue()
Deprecated.
|
Instant |
SimpleAttribute.getInstantValue() |
String |
SimpleAttribute.getStringValue() |
Attribute |
Attribute.getSubAttribute(String attributeName) |
Attribute |
ComplexAttribute.getSubAttribute(String attributeName)
Retrieve one attribute given the attribute name.
|
Attribute |
SimpleAttribute.getSubAttribute(String attributeName) |
Attribute |
MultiValuedAttribute.getSubAttribute(String attributeName) |
void |
ComplexAttribute.setSubAttribute(Attribute subAttribute)
Set a sub attribute of the complex attribute's sub attribute list.
|
void |
SimpleAttribute.updateValue(Object value) |
| Modifier and Type | Method and Description |
|---|---|
void |
SCIMUserSchemaExtensionBuilder.buildUserSchemaExtension(String configFilePath) |
| Modifier and Type | Method and Description |
|---|---|
ComplexAttribute |
JSONDecoder.buildComplexAttribute(AttributeSchema complexAttributeSchema,
org.json.JSONObject jsonObject) |
MultiValuedAttribute |
JSONDecoder.buildComplexMultiValuedAttribute(AttributeSchema attributeSchema,
org.json.JSONArray attributeValues) |
MultiValuedAttribute |
JSONDecoder.buildPrimitiveMultiValuedAttribute(AttributeSchema attributeSchema,
org.json.JSONArray attributeValues) |
SimpleAttribute |
JSONDecoder.buildSimpleAttribute(AttributeSchema attributeSchema,
Object attributeValue) |
AbstractSCIMObject |
JSONDecoder.decode(String scimResourceString,
SCIMResourceTypeSchema schema) |
AbstractCharonException |
JSONDecoder.decodeCharonException(String scimErrorString)
this method can be used to decode a scim response with the error schema into an
AbstractCharonException |
<T extends AbstractCharonException> |
JSONDecoder.decodeCharonException(String scimErrorString,
Class<T> exceptionType)
this method can be used to decode a scim response with the error schema into an
AbstractCharonException |
<T extends AbstractSCIMObject> |
JSONDecoder.decodeListedResource(String scimResourceString,
ResourceTypeSchema resourceSchema,
Class<T> scimObjectType)
decodes a string that should match the
SCIMConstants.LISTED_RESOURCE_CORE_SCHEMA_URI scheme to
ListedResource object that holds the parsed objects |
<T extends AbstractSCIMObject> |
JSONDecoder.decodeResource(String scimResourceString,
ResourceTypeSchema resourceSchema,
T scimObject)
Decode the resource string sent in the SCIM request payload.
|
String |
JSONEncoder.encodeSCIMObject(SCIMObject scimObject) |
org.json.JSONObject |
JSONEncoder.getSCIMObjectAsJSONObject(SCIMObject scimObject) |
| Modifier and Type | Method and Description |
|---|---|
Group |
UserManager.createGroup(Group group,
Map<String,Boolean> requiredAttributes) |
User |
UserManager.createMe(User user,
Map<String,Boolean> requiredAttributes) |
User |
UserManager.createUser(User user,
Map<String,Boolean> requiredAttributes)
User Manipulation operations.
|
void |
UserManager.deleteGroup(String id) |
void |
UserManager.deleteMe(String userName) |
void |
UserManager.deleteUser(String userId) |
Group |
UserManager.getGroup(String id,
Map<String,Boolean> requiredAttributes) |
User |
UserManager.getMe(String userName,
Map<String,Boolean> requiredAttributes) |
User |
UserManager.getUser(String id,
Map<String,Boolean> requiredAttributes) |
default List<Object> |
UserManager.listGroupsWithGET(Node node,
int startIndex,
int count,
String sortBy,
String sortOrder,
Map<String,Boolean> requiredAttributes)
Deprecated.
|
default List<Object> |
UserManager.listGroupsWithGET(Node node,
int startIndex,
int count,
String sortBy,
String sortOrder,
String domainName,
Map<String,Boolean> requiredAttributes) |
List<Object> |
UserManager.listGroupsWithPost(SearchRequest searchRequest,
Map<String,Boolean> requiredAttributes) |
default List<Object> |
UserManager.listUsersWithGET(Node node,
int startIndex,
int count,
String sortBy,
String sortOrder,
Map<String,Boolean> requiredAttributes)
Deprecated.
|
default List<Object> |
UserManager.listUsersWithGET(Node node,
int startIndex,
int count,
String sortBy,
String sortOrder,
String domainName,
Map<String,Boolean> requiredAttributes) |
List<Object> |
UserManager.listUsersWithPost(SearchRequest searchRequest,
Map<String,Boolean> requiredAttributes) |
Group |
UserManager.updateGroup(Group oldGroup,
Group newGroup,
Map<String,Boolean> requiredAttributes) |
User |
UserManager.updateMe(User updatedUser,
Map<String,Boolean> requiredAttributes) |
User |
UserManager.updateUser(User updatedUser,
Map<String,Boolean> requiredAttributes) |
| Modifier and Type | Method and Description |
|---|---|
protected void |
AbstractSCIMObject.createMetaAttribute()
crete the meta attribute of the scim object
|
void |
AbstractSCIMObject.deleteSubSubAttribute(String childAttribute,
String parentAttribute,
String grandParentAttribute)
This deletion method is only applicable for extension schema
Deleting a sub attribute of complex attribute is the responsibility of an attribute holder.
|
Date |
AbstractSCIMObject.getCreatedDate()
Deprecated.
|
Date |
AbstractSCIMObject.getLastModified()
Deprecated.
|
String |
User.getPassword()
return the password of the user
|
String |
User.getUserName()
return userName of the user
|
void |
AbstractSCIMObject.setCreatedDate(Date createdDate)
Deprecated.
|
void |
AbstractSCIMObject.setCreatedInstant(Instant created) |
void |
Group.setDisplayName(String displayName)
set the display name of the group
|
void |
AbstractSCIMObject.setExternalId(String externalId)
Set a String that is an identifier for the resource as defined by the
provisioning client.
|
void |
User.setGroup(String type,
String value,
String display)
set the associated groups of the user
|
void |
AbstractSCIMObject.setId(String id)
Set a value for the id attribute.
|
void |
AbstractSCIMObject.setLastModified(Date lastModifiedDate)
Deprecated.
|
void |
AbstractSCIMObject.setLastModifiedInstant(Instant lastModified) |
void |
AbstractSCIMObject.setLocation(String location)
set the location of the meta attribute
|
void |
Group.setMember(String value,
String display)
set a member to the group
|
void |
Group.setMember(String value,
String display,
String ref,
String type) |
void |
User.setPassword(String password)
set the password of the user
|
void |
AbstractSCIMObject.setResourceType(String resourceType)
set the resourceType of the meta attribute
|
void |
User.setUserName(String userName)
set the userName of the user
|
| Modifier and Type | Method and Description |
|---|---|
ListedResource |
GroupResourceManager.createListedResource(List<Object> groups,
int startIndex,
int totalResults) |
protected ListedResource |
UserResourceManager.createListedResource(List<Object> users,
int startIndex,
int totalResults) |
static JSONDecoder |
AbstractResourceManager.getDecoder() |
static JSONEncoder |
AbstractResourceManager.getEncoder() |
String |
MeResourceManager.getUserName(String scimObjectString) |
| Modifier and Type | Method and Description |
|---|---|
protected static AbstractSCIMObject |
AbstractValidator.checkIfReadOnlyAndImmutableAttributesModified(AbstractSCIMObject oldObject,
AbstractSCIMObject newObject,
SCIMResourceTypeSchema resourceSchema) |
static void |
AbstractValidator.removeAnyReadOnlyAttributes(AbstractSCIMObject scimObject,
SCIMResourceTypeSchema resourceSchema) |
void |
AttributeSchema.removeSubAttribute(String subAttributeName) |
void |
SCIMAttributeSchema.removeSubAttribute(String subAttributeName) |
protected static void |
AbstractValidator.setDisplayNameInComplexMultiValuedAttributes(AbstractSCIMObject scimObject,
SCIMResourceTypeSchema resourceSchema) |
static void |
ServerSideValidator.validateCreatedSCIMObject(AbstractSCIMObject scimObject,
SCIMResourceTypeSchema resourceSchema) |
static AbstractSCIMObject |
ServerSideValidator.validateResourceTypeSCIMObject(AbstractSCIMObject scimObject) |
static void |
ClientSideValidator.validateRetrievedSCIMObject(AbstractSCIMObject scimObject,
SCIMResourceTypeSchema schema) |
static void |
ServerSideValidator.validateRetrievedSCIMObject(AbstractSCIMObject scimObject,
SCIMResourceTypeSchema resourceSchema,
String reuqestedAttributes,
String requestedExcludingAttributes) |
static void |
ServerSideValidator.validateRetrievedSCIMObjectInList(AbstractSCIMObject scimObject,
SCIMResourceTypeSchema resourceSchema,
String reuqestedAttributes,
String requestedExcludingAttributes) |
static void |
AbstractValidator.validateReturnedAttributes(AbstractSCIMObject scimObject,
String requestedAttributes,
String requestedExcludingAttributes) |
static void |
AbstractValidator.validateSchemaList(AbstractSCIMObject scimObject,
SCIMResourceTypeSchema resourceSchema) |
static void |
AbstractValidator.validateSCIMObjectForRequiredAttributes(AbstractSCIMObject scimObject,
ResourceTypeSchema resourceSchema) |
static AbstractSCIMObject |
ServerSideValidator.validateUpdatedSCIMObject(AbstractSCIMObject oldObject,
AbstractSCIMObject newObject,
SCIMResourceTypeSchema resourceSchema) |
Copyright © 2019 WSO2. All rights reserved.