Class ResourceIndexRecord
- java.lang.Object
-
- com.ibm.fhir.persistence.jdbc.dao.api.ResourceIndexRecord
-
public class ResourceIndexRecord extends Object
Describes a resource being reindexed
-
-
Constructor Summary
Constructors Constructor Description ResourceIndexRecord(long logicalResourceId, int resourceTypeId, String logicalId, long transactionId, String parameterHash)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getLogicalId()
long
getLogicalResourceId()
String
getParameterHash()
Gets the Base64-encoded SHA-256 hash of the search parameters.String
getResourceType()
int
getResourceTypeId()
long
getTransactionId()
boolean
isDeleted()
void
setDeleted(boolean deleted)
void
setParameterHash(String parameterHash)
Gets the Base64-encoded SHA-256 hash of the search parameters.void
setResourceType(String resourceType)
-
-
-
Method Detail
-
getResourceTypeId
public int getResourceTypeId()
- Returns:
- the resourceTypeId
-
getLogicalId
public String getLogicalId()
- Returns:
- the logicalId
-
getLogicalResourceId
public long getLogicalResourceId()
- Returns:
- the logicalResourceId
-
getResourceType
public String getResourceType()
- Returns:
- the resourceType
-
setResourceType
public void setResourceType(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 String getParameterHash()
Gets the Base64-encoded SHA-256 hash of the search parameters.- Returns:
- the Base64-encoded SHA-256 hash
-
setParameterHash
public void setParameterHash(String parameterHash)
Gets the Base64-encoded SHA-256 hash of the search parameters.- Parameters:
parameterHash
- the Base64-encoded SHA-256 hash
-
-