Class ResourceIndexRecord
- java.lang.Object
-
- com.ibm.fhir.persistence.jdbc.dao.api.ResourceIndexRecord
-
public class ResourceIndexRecord extends java.lang.Object
Describes 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.String
getLogicalId()
long
getLogicalResourceId()
java.lang.String
getParameterHash()
Gets the Base64-encoded SHA-256 hash of the search parameters.java.lang.String
getResourceType()
int
getResourceTypeId()
long
getTransactionId()
boolean
isDeleted()
void
setDeleted(boolean deleted)
void
setParameterHash(java.lang.String parameterHash)
Gets the Base64-encoded SHA-256 hash of the search parameters.void
setResourceType(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
-
-