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

公開メンバ関数

void setValue (Object value)
 
Object getValue ()
 
String getOperation ()
 
void setOperation (String operation)
 
String getPath ()
 
PatchOperationType getType ()
 
void setPath (String path)
 

非公開変数類

String operation
 
String path
 
Object value
 
PatchOperationType type
 

詳解

Represents a patch operation as per section 4 of RFC 6902. See also PatchRequest.

関数詳解

◆ getOperation()

String org.gluu.oxtrust.model.scim2.patch.PatchOperation.getOperation ( )
inline
37  {
38  return operation;
39  }
String operation
Definition: PatchOperation.java:20

◆ getPath()

String org.gluu.oxtrust.model.scim2.patch.PatchOperation.getPath ( )
inline
48  {
49  return path;
50  }
String path
Definition: PatchOperation.java:22

◆ getType()

PatchOperationType org.gluu.oxtrust.model.scim2.patch.PatchOperation.getType ( )
inline
52  {
53  return type;
54  }
PatchOperationType type
Definition: PatchOperation.java:27

◆ getValue()

Object org.gluu.oxtrust.model.scim2.patch.PatchOperation.getValue ( )
inline
33  {
34  return value;
35  }
Object value
Definition: PatchOperation.java:24

◆ setOperation()

void org.gluu.oxtrust.model.scim2.patch.PatchOperation.setOperation ( String  operation)
inline
41  {
42  this.operation = operation;
43 
44  if (operation!=null)
45  type=PatchOperationType.valueOf(operation.toUpperCase());
46  }
PatchOperationType type
Definition: PatchOperation.java:27
String operation
Definition: PatchOperation.java:20

◆ setPath()

void org.gluu.oxtrust.model.scim2.patch.PatchOperation.setPath ( String  path)
inline
56  {
57  this.path = path;
58  }
String path
Definition: PatchOperation.java:22

◆ setValue()

void org.gluu.oxtrust.model.scim2.patch.PatchOperation.setValue ( Object  value)
inline
29  {
30  this.value=value;
31  }
Object value
Definition: PatchOperation.java:24

メンバ詳解

◆ operation

String org.gluu.oxtrust.model.scim2.patch.PatchOperation.operation
private

◆ path

String org.gluu.oxtrust.model.scim2.patch.PatchOperation.path
private

◆ type

PatchOperationType org.gluu.oxtrust.model.scim2.patch.PatchOperation.type
private

◆ value

Object org.gluu.oxtrust.model.scim2.patch.PatchOperation.value
private

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