Class TokenParmVal
- java.lang.Object
-
- com.ibm.fhir.persistence.jdbc.dto.TokenParmVal
-
- All Implemented Interfaces:
ExtractedParameterValue
public class TokenParmVal extends Object implements ExtractedParameterValue
This class defines the Data Transfer Object representing a row in the X_TOKEN_VALUES tables.
-
-
Field Summary
Fields Modifier and Type Field Description static String
DEFAULT_TOKEN_SYSTEM
-
Constructor Summary
Constructors Constructor Description TokenParmVal()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(ExtractedParameterValueVisitor visitor)
We know our type, so we can call the correct method on the visitorString
getBase()
String
getName()
String
getResourceType()
String
getValueCode()
String
getValueSystem()
void
setBase(String base)
void
setName(String name)
void
setResourceType(String resourceType)
void
setValueCode(String valueCode)
void
setValueSystem(String valueSystem)
String
toString()
-
-
-
Field Detail
-
DEFAULT_TOKEN_SYSTEM
public static final String DEFAULT_TOKEN_SYSTEM
- See Also:
- Constant Field Values
-
-
Method Detail
-
setName
public void setName(String name)
- Specified by:
setName
in interfaceExtractedParameterValue
-
getName
public String getName()
- Specified by:
getName
in interfaceExtractedParameterValue
-
getValueSystem
public String getValueSystem()
-
setValueSystem
public void setValueSystem(String valueSystem)
-
getValueCode
public String getValueCode()
-
setValueCode
public void setValueCode(String valueCode)
-
getResourceType
public String getResourceType()
- Specified by:
getResourceType
in interfaceExtractedParameterValue
-
setResourceType
public void setResourceType(String resourceType)
- Specified by:
setResourceType
in interfaceExtractedParameterValue
-
accept
public void accept(ExtractedParameterValueVisitor visitor) throws FHIRPersistenceException
We know our type, so we can call the correct method on the visitor- Specified by:
accept
in interfaceExtractedParameterValue
- Throws:
FHIRPersistenceException
-
getBase
public String getBase()
- Specified by:
getBase
in interfaceExtractedParameterValue
- Returns:
- the base
-
setBase
public void setBase(String base)
- Specified by:
setBase
in interfaceExtractedParameterValue
- Parameters:
base
- the base to set
-
-