Package io.jans.scim.model.scim2.bulk
Class BulkOperation
- java.lang.Object
-
- io.jans.scim.model.scim2.bulk.BulkOperation
-
public class BulkOperation extends Object
A class representing the components of a SCIM Bulk operation as per section 3.7 of RFC 7644.- Author:
- Rahat Ali Date: 05.08.2015
-
-
Constructor Summary
Constructors Constructor Description BulkOperation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getBulkId()
Map<String,Object>
getData()
String
getDataStr()
String
getLocation()
String
getMethod()
String
getPath()
Object
getResponse()
String
getStatus()
void
setBulkId(String bulkId)
void
setData(Map<String,Object> map)
void
setLocation(String location)
void
setMethod(String method)
void
setPath(String path)
void
setResponse(Object response)
void
setStatus(String status)
-
-
-
Method Detail
-
getMethod
public String getMethod()
-
setMethod
public void setMethod(String method)
-
getBulkId
public String getBulkId()
-
setBulkId
public void setBulkId(String bulkId)
-
getPath
public String getPath()
-
setPath
public void setPath(String path)
-
getDataStr
public String getDataStr()
-
getLocation
public String getLocation()
-
setLocation
public void setLocation(String location)
-
getResponse
public Object getResponse()
-
setResponse
public void setResponse(Object response)
-
getStatus
public String getStatus()
-
setStatus
public void setStatus(String status)
-
-