Class ChangePasswordConfig
- java.lang.Object
-
- io.jans.scim.model.scim2.provider.config.ChangePasswordConfig
-
public class ChangePasswordConfig extends Object
A class used to specify Change Password configuration options for SCIM service (see section 5 of RFC 7643).
-
-
Constructor Summary
Constructors Constructor Description ChangePasswordConfig()
Creates an instance of ChangePasswordConfig with all its fields unassigned.ChangePasswordConfig(boolean supported)
Creates an instance of ChangePasswordConfig using the parameter values passed.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isSupported()
Indicates whether the Change Password operation is supported.void
setSupported(boolean supported)
-
-
-
Constructor Detail
-
ChangePasswordConfig
public ChangePasswordConfig()
Creates an instance of ChangePasswordConfig with all its fields unassigned.
-
ChangePasswordConfig
public ChangePasswordConfig(boolean supported)
Creates an instance of ChangePasswordConfig using the parameter values passed.- Parameters:
supported
- Specifies whether the Change Password operation is supported.
-
-