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

公開メンバ関数

 PatchRequest ()
 
List< String > getSchemas ()
 
void setSchemas (List< String > schemas)
 
List< PatchOperationgetOperations ()
 
void setOperations (List< PatchOperation > operations)
 

非公開変数類

List< String > schemas
 
List< PatchOperationoperations
 

詳解

A class used to represent a request for a SCIM PATCH. See section 3.5.2 of RFC 7644.

構築子と解体子

◆ PatchRequest()

org.gluu.oxtrust.model.scim2.patch.PatchRequest.PatchRequest ( )
inline

Constructs an empty PatchRequest initializing its schemas field properly.

31  {
32  this.schemas = Collections.singletonList(PATCH_REQUEST_SCHEMA_ID);
33  }
List< String > schemas
Definition: PatchRequest.java:23

関数詳解

◆ getOperations()

List<PatchOperation> org.gluu.oxtrust.model.scim2.patch.PatchRequest.getOperations ( )
inline
43  {
44  return operations;
45  }
List< PatchOperation > operations
Definition: PatchRequest.java:26

◆ getSchemas()

List<String> org.gluu.oxtrust.model.scim2.patch.PatchRequest.getSchemas ( )
inline
35  {
36  return schemas;
37  }
List< String > schemas
Definition: PatchRequest.java:23

◆ setOperations()

void org.gluu.oxtrust.model.scim2.patch.PatchRequest.setOperations ( List< PatchOperation operations)
inline
47  {
48  this.operations = operations;
49  }
List< PatchOperation > operations
Definition: PatchRequest.java:26

◆ setSchemas()

void org.gluu.oxtrust.model.scim2.patch.PatchRequest.setSchemas ( List< String >  schemas)
inline
39  {
40  this.schemas = schemas;
41  }
List< String > schemas
Definition: PatchRequest.java:23

メンバ詳解

◆ operations

List<PatchOperation> org.gluu.oxtrust.model.scim2.patch.PatchRequest.operations
private

◆ schemas

List<String> org.gluu.oxtrust.model.scim2.patch.PatchRequest.schemas
private

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