Class ResourcePayloadData
- java.lang.Object
-
- com.ibm.fhir.bulkdata.jbatch.export.fast.data.ResourcePayloadData
-
public class ResourcePayloadData extends Object
A container holding the raw payload for a single resource. A list of these objects is returned by theResourcePayloadReader.readItem()
method.
-
-
Constructor Summary
Constructors Constructor Description ResourcePayloadData(String logicalId, byte[] rawPayload)
Public constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getLogicalId()
byte[]
getRawPayload()
-
-
-
Constructor Detail
-
ResourcePayloadData
public ResourcePayloadData(String logicalId, byte[] rawPayload)
Public constructor- Parameters:
logicalId
-rawPayload
-
-
-
Method Detail
-
getLogicalId
public String getLogicalId()
- Returns:
- the logicalId
-
getRawPayload
public byte[] getRawPayload()
- Returns:
- the rawPayload
-
-