Package io.jans.scim.model.scim2
Class Meta
- java.lang.Object
-
- io.jans.scim.model.scim2.Meta
-
public class Meta extends Object
This class represents the common resource attribute "meta" that contains metadata about the resource being described. See section 3.1 of RFC 7643.
-
-
Constructor Summary
Constructors Constructor Description Meta()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getCreated()
Retrieves the meta "created" sub-attributeString
getLastModified()
Retrieves the meta "lastModified" sub-attributeString
getLocation()
Retrieves the meta "location" sub-attributeString
getResourceType()
Retrieves the meta "resourceType" sub-attributeString
getVersion()
Returns the version of the resource being represented.void
setCreated(String created)
void
setLastModified(String lastModified)
void
setLocation(String location)
void
setResourceType(String resourceType)
void
setVersion(String version)
-
-
-
Method Detail
-
getResourceType
public String getResourceType()
Retrieves the meta "resourceType" sub-attribute- Returns:
- A string value
-
setResourceType
public void setResourceType(String resourceType)
-
getCreated
public String getCreated()
Retrieves the meta "created" sub-attribute- Returns:
- A string value
-
setCreated
public void setCreated(String created)
-
getLastModified
public String getLastModified()
Retrieves the meta "lastModified" sub-attribute- Returns:
- A string value
-
setLastModified
public void setLastModified(String lastModified)
-
getLocation
public String getLocation()
Retrieves the meta "location" sub-attribute- Returns:
- A string value
-
setLocation
public void setLocation(String location)
-
getVersion
public String getVersion()
Returns the version of the resource being represented.- Returns:
- A string value (null if no version information is available).
-
setVersion
public void setVersion(String version)
-
-