Class ServiceProviderConfig
- java.lang.Object
-
- io.jans.scim.model.scim2.BaseScimResource
-
- io.jans.scim.model.scim2.provider.config.ServiceProviderConfig
-
public class ServiceProviderConfig extends BaseScimResource
This class represents a ServiceProviderConfig SCIM resource. It's key for the implementation of the/ServiceProviderConfig
endpoint. For more about this resource type see RFC 7643, section 5
-
-
Constructor Summary
Constructors Constructor Description ServiceProviderConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Collection<AuthenticationScheme>
getAuthenticationSchemes()
BulkConfig
getBulk()
ChangePasswordConfig
getChangePassword()
String
getDocumentationUri()
ETagConfig
getEtag()
FilterConfig
getFilter()
PatchConfig
getPatch()
SortConfig
getSort()
void
setAuthenticationSchemes(Collection<AuthenticationScheme> authenticationSchemes)
void
setBulk(BulkConfig bulk)
void
setChangePassword(ChangePasswordConfig changePassword)
void
setDocumentationUri(String documentationUri)
void
setEtag(ETagConfig etag)
void
setFilter(FilterConfig filter)
void
setPatch(PatchConfig patch)
void
setSort(SortConfig sort)
-
Methods inherited from class io.jans.scim.model.scim2.BaseScimResource
addCustomAttributes, addCustomAttributes, getCustomAttributes, getCustomAttributes, getExternalId, getId, getMeta, getSchemas, setExternalId, setId, setMeta, setSchemas
-
-
-
-
Method Detail
-
getDocumentationUri
public String getDocumentationUri()
-
setDocumentationUri
public void setDocumentationUri(String documentationUri)
-
getPatch
public PatchConfig getPatch()
-
setPatch
public void setPatch(PatchConfig patch)
-
getFilter
public FilterConfig getFilter()
-
setFilter
public void setFilter(FilterConfig filter)
-
getBulk
public BulkConfig getBulk()
-
setBulk
public void setBulk(BulkConfig bulk)
-
getSort
public SortConfig getSort()
-
setSort
public void setSort(SortConfig sort)
-
getChangePassword
public ChangePasswordConfig getChangePassword()
-
setChangePassword
public void setChangePassword(ChangePasswordConfig changePassword)
-
getEtag
public ETagConfig getEtag()
-
setEtag
public void setEtag(ETagConfig etag)
-
setAuthenticationSchemes
public void setAuthenticationSchemes(Collection<AuthenticationScheme> authenticationSchemes)
-
getAuthenticationSchemes
public Collection<AuthenticationScheme> getAuthenticationSchemes()
-
-