gluu
公開メンバ関数 | 非公開変数類 | 全メンバ一覧
org.gluu.oxtrust.model.scim2.Meta クラス
org.gluu.oxtrust.model.scim2.Meta 連携図
Collaboration graph

公開メンバ関数

String getResourceType ()
 
void setResourceType (String resourceType)
 
String getCreated ()
 
void setCreated (String created)
 
String getLastModified ()
 
void setLastModified (String lastModified)
 
String getLocation ()
 
void setLocation (String location)
 
String getVersion ()
 
void setVersion (String version)
 

非公開変数類

String resourceType
 
String created
 
String lastModified
 
String location
 
String version
 

詳解

This class represents the common resource attribute "meta" that contains metadata about the resource being described. See section 3.1 of RFC 7643.

関数詳解

◆ getCreated()

String org.gluu.oxtrust.model.scim2.Meta.getCreated ( )
inline

Retrieves the meta "created" sub-attribute

戻り値
A string value
70  {
71  return created;
72  }
String created
Definition: Meta.java:34

◆ getLastModified()

String org.gluu.oxtrust.model.scim2.Meta.getLastModified ( )
inline

Retrieves the meta "lastModified" sub-attribute

戻り値
A string value
82  {
83  return lastModified;
84  }
String lastModified
Definition: Meta.java:41

◆ getLocation()

String org.gluu.oxtrust.model.scim2.Meta.getLocation ( )
inline

Retrieves the meta "location" sub-attribute

戻り値
A string value
94  {
95  return location;
96  }
String location
Definition: Meta.java:46

◆ getResourceType()

String org.gluu.oxtrust.model.scim2.Meta.getResourceType ( )
inline

Retrieves the meta "resourceType" sub-attribute

戻り値
A string value
58  {
59  return resourceType;
60  }
String resourceType
Definition: Meta.java:26

◆ getVersion()

String org.gluu.oxtrust.model.scim2.Meta.getVersion ( )
inline

Returns the version of the resource being represented.

戻り値
A string value (null if no version information is available).
106  {
107  return version;
108  }
String version
Definition: Meta.java:52

◆ setCreated()

void org.gluu.oxtrust.model.scim2.Meta.setCreated ( String  created)
inline
74  {
75  this.created = created;
76  }
String created
Definition: Meta.java:34

◆ setLastModified()

void org.gluu.oxtrust.model.scim2.Meta.setLastModified ( String  lastModified)
inline
86  {
88  }
String lastModified
Definition: Meta.java:41

◆ setLocation()

void org.gluu.oxtrust.model.scim2.Meta.setLocation ( String  location)
inline
98  {
99  this.location = location;
100  }
String location
Definition: Meta.java:46

◆ setResourceType()

void org.gluu.oxtrust.model.scim2.Meta.setResourceType ( String  resourceType)
inline
62  {
64  }
String resourceType
Definition: Meta.java:26

◆ setVersion()

void org.gluu.oxtrust.model.scim2.Meta.setVersion ( String  version)
inline
110  {
111  this.version = version;
112  }
String version
Definition: Meta.java:52

メンバ詳解

◆ created

String org.gluu.oxtrust.model.scim2.Meta.created
private

◆ lastModified

String org.gluu.oxtrust.model.scim2.Meta.lastModified
private

◆ location

String org.gluu.oxtrust.model.scim2.Meta.location
private

◆ resourceType

String org.gluu.oxtrust.model.scim2.Meta.resourceType
private

◆ version

String org.gluu.oxtrust.model.scim2.Meta.version
private

このクラス詳解は次のファイルから抽出されました: