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