Class PatchConfig
- java.lang.Object
-
- io.jans.scim.model.scim2.provider.config.PatchConfig
-
public class PatchConfig extends Object
This class represents thepatch
complex attribute in the Service Provider Config (see section 5 of RFC 7643).
-
-
Constructor Summary
Constructors Constructor Description PatchConfig()
Creates an instance of PatchConfig with all its fields unassigned.PatchConfig(boolean supported)
Creates an instance of PatchConfig using the parameter values passed.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isSupported()
Indicates whether the PATCH operation is supported.void
setSupported(boolean supported)
-
-
-
Constructor Detail
-
PatchConfig
public PatchConfig()
Creates an instance of PatchConfig with all its fields unassigned.
-
PatchConfig
public PatchConfig(boolean supported)
Creates an instance of PatchConfig using the parameter values passed.- Parameters:
supported
- Specifies whether the PATCH operation is supported.
-
-