Class ResourceRefRec
- java.lang.Object
-
- com.ibm.fhir.persistence.jdbc.dao.impl.ResourceRefRec
-
- Direct Known Subclasses:
ResourceProfileRec,ResourceTokenValueRec
public class ResourceRefRec extends Object
DTO base representing a reference from a resource to another resource (local or external)
-
-
Constructor Summary
Constructors Constructor Description ResourceRefRec(String parameterName, String resourceType, long resourceTypeId, long logicalResourceId)Public constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetLogicalResourceId()StringgetParameterName()Getter for parameterNameintgetParameterNameId()StringgetResourceType()longgetResourceTypeId()voidsetParameterNameId(int id)Setter for the parameterNameId
-
-
-
Method Detail
-
getParameterName
public String getParameterName()
Getter for parameterName- Returns:
-
setParameterNameId
public void setParameterNameId(int id)
Setter for the parameterNameId- Parameters:
id- the database parameter_name_id from PARAMETER_NAMES
-
getParameterNameId
public int getParameterNameId()
- Returns:
- the parameterNameId
-
getResourceType
public String getResourceType()
- Returns:
- the resourceType
-
getResourceTypeId
public long getResourceTypeId()
- Returns:
- the resourceTypeId
-
getLogicalResourceId
public long getLogicalResourceId()
- Returns:
- the logicalResourceId
-
-