Class Resource
- java.lang.Object
 - 
- com.ibm.fhir.persistence.jdbc.dto.Resource
 
 
- 
public class Resource extends Object
This class defines the Data Transfer Object representing a row in the FHIR Resource table. 
- 
- 
Constructor Summary
Constructors Constructor Description Resource() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]getData()longgetId()TimestampgetLastUpdated()StringgetLogicalId()StringgetResourceType()intgetVersionId()booleanisDeleted()voidsetData(byte[] data)voidsetDeleted(boolean deleted)voidsetId(long id)voidsetLastUpdated(Timestamp lastUpdated)voidsetLogicalId(String logicalId)voidsetResourceType(String resourceType)voidsetVersionId(int versionId)StringtoString() 
 - 
 
- 
- 
Method Detail
- 
getResourceType
public String getResourceType()
 
- 
setResourceType
public void setResourceType(String resourceType)
 
- 
getLastUpdated
public Timestamp getLastUpdated()
 
- 
setLastUpdated
public void setLastUpdated(Timestamp lastUpdated)
 
- 
getId
public long getId()
 
- 
setId
public void setId(long id)
 
- 
getLogicalId
public String getLogicalId()
 
- 
setLogicalId
public void setLogicalId(String logicalId)
 
- 
getVersionId
public int getVersionId()
 
- 
setVersionId
public void setVersionId(int versionId)
 
- 
getData
public byte[] getData()
 
- 
setData
public void setData(byte[] data)
 
- 
isDeleted
public boolean isDeleted()
 
- 
setDeleted
public void setDeleted(boolean deleted)
 
 - 
 
 -