Package com.ibm.fhir.audit.beans
Class Batch
- java.lang.Object
-
- com.ibm.fhir.audit.beans.Batch
-
public class Batch extends Object
This class defines the Batch parameters section of the IBM FHIR server AuditLogEntry.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Batch.Builder
Builder is a convenience pattern to assemble to Java Objectstatic class
Batch.Parser
Parserstatic class
Batch.Writer
Generates JSON from this object.
-
Constructor Summary
Constructors Constructor Description Batch()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Batch.Builder
builder()
Long
getResourcesCreated()
Long
getResourcesDeleted()
Long
getResourcesExecuted()
Long
getResourcesRead()
Long
getResourcesUpdated()
String
getStatus()
void
setResourcesCreated(Long recsCreated)
void
setResourcesDeleted(Long resourcesDeleted)
void
setResourcesExecuted(Long resourcesExecuted)
void
setResourcesRead(Long recsRead)
void
setResourcesUpdated(Long resourcesUpdated)
void
setStatus(String status)
-
-
-
Method Detail
-
getStatus
public String getStatus()
-
setStatus
public void setStatus(String status)
-
getResourcesRead
public Long getResourcesRead()
-
setResourcesRead
public void setResourcesRead(Long recsRead)
-
getResourcesCreated
public Long getResourcesCreated()
-
setResourcesCreated
public void setResourcesCreated(Long recsCreated)
-
getResourcesUpdated
public Long getResourcesUpdated()
-
setResourcesUpdated
public void setResourcesUpdated(Long resourcesUpdated)
-
getResourcesDeleted
public Long getResourcesDeleted()
-
setResourcesDeleted
public void setResourcesDeleted(Long resourcesDeleted)
-
getResourcesExecuted
public Long getResourcesExecuted()
-
setResourcesExecuted
public void setResourcesExecuted(Long resourcesExecuted)
-
builder
public static Batch.Builder builder()
-
-