Class LogicalResourceIdentKey
- java.lang.Object
-
- org.linuxforhealth.fhir.persistence.jdbc.dao.api.LogicalResourceIdentKey
-
- Direct Known Subclasses:
LogicalResourceIdentValue
public class LogicalResourceIdentKey extends java.lang.Object
A DTO representing a mapping of a logical_resource identity to its database logical_resource_id value.
-
-
Constructor Summary
Constructors Constructor Description LogicalResourceIdentKey(int resourceTypeId, java.lang.String logicalId)
Public constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
java.lang.String
getLogicalId()
int
getResourceTypeId()
int
hashCode()
-
-
-
Method Detail
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
getResourceTypeId
public int getResourceTypeId()
- Returns:
- the resourceTypeId
-
getLogicalId
public java.lang.String getLogicalId()
- Returns:
- the logicalId
-
-