Class ResourceIndexRecord
- java.lang.Object
 - 
- com.ibm.fhir.persistence.jdbc.dao.api.ResourceIndexRecord
 
 
- 
public class ResourceIndexRecord extends java.lang.ObjectDescribes a resource being reindexed 
- 
- 
Constructor Summary
Constructors Constructor Description ResourceIndexRecord(long logicalResourceId, int resourceTypeId, java.lang.String logicalId, long transactionId, java.lang.String parameterHash) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetLogicalId()longgetLogicalResourceId()java.lang.StringgetParameterHash()Gets the Base64-encoded SHA-256 hash of the search parameters.java.lang.StringgetResourceType()intgetResourceTypeId()longgetTransactionId()booleanisDeleted()voidsetDeleted(boolean deleted)voidsetParameterHash(java.lang.String parameterHash)Gets the Base64-encoded SHA-256 hash of the search parameters.voidsetResourceType(java.lang.String resourceType) 
 - 
 
- 
- 
Method Detail
- 
getResourceTypeId
public int getResourceTypeId()
- Returns:
 - the resourceTypeId
 
 
- 
getLogicalId
public java.lang.String getLogicalId()
- Returns:
 - the logicalId
 
 
- 
getLogicalResourceId
public long getLogicalResourceId()
- Returns:
 - the logicalResourceId
 
 
- 
getResourceType
public java.lang.String getResourceType()
- Returns:
 - the resourceType
 
 
- 
setResourceType
public void setResourceType(java.lang.String resourceType)
- Parameters:
 resourceType- the resourceType to set
 
- 
getTransactionId
public long getTransactionId()
- Returns:
 - the transactionId
 
 
- 
isDeleted
public boolean isDeleted()
- Returns:
 - the deleted
 
 
- 
setDeleted
public void setDeleted(boolean deleted)
- Parameters:
 deleted- the deleted to set
 
- 
getParameterHash
public java.lang.String getParameterHash()
Gets the Base64-encoded SHA-256 hash of the search parameters.- Returns:
 - the Base64-encoded SHA-256 hash
 
 
- 
setParameterHash
public void setParameterHash(java.lang.String parameterHash)
Gets the Base64-encoded SHA-256 hash of the search parameters.- Parameters:
 parameterHash- the Base64-encoded SHA-256 hash
 
 - 
 
 -