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/ServiceProviderConfigendpoint. 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()BulkConfiggetBulk()ChangePasswordConfiggetChangePassword()StringgetDocumentationUri()ETagConfiggetEtag()FilterConfiggetFilter()PatchConfiggetPatch()SortConfiggetSort()voidsetAuthenticationSchemes(Collection<AuthenticationScheme> authenticationSchemes)voidsetBulk(BulkConfig bulk)voidsetChangePassword(ChangePasswordConfig changePassword)voidsetDocumentationUri(String documentationUri)voidsetEtag(ETagConfig etag)voidsetFilter(FilterConfig filter)voidsetPatch(PatchConfig patch)voidsetSort(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()
-
-