Class CompositeParmVal
- java.lang.Object
-
- com.ibm.fhir.persistence.jdbc.dto.CompositeParmVal
-
- All Implemented Interfaces:
ExtractedParameterValue
public class CompositeParmVal extends Object implements ExtractedParameterValue
This class defines the Data Transfer Object representing a row in the X_DATE_VALUES tables.
-
-
Constructor Summary
Constructors Constructor Description CompositeParmVal()
-
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 visitorvoid
addComponent(ExtractedParameterValue... component)
String
getBase()
List<ExtractedParameterValue>
getComponent()
String
getName()
String
getResourceType()
void
setBase(String base)
void
setComponent(List<ExtractedParameterValue> components)
void
setName(String name)
void
setResourceType(String resourceType)
-
-
-
Method Detail
-
setName
public void setName(String name)
- Specified by:
setName
in interfaceExtractedParameterValue
-
getName
public String getName()
- Specified by:
getName
in interfaceExtractedParameterValue
-
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
-
getComponent
public List<ExtractedParameterValue> getComponent()
- Returns:
- get the list of components in this composite parameter
-
setComponent
public void setComponent(List<ExtractedParameterValue> components)
- Parameters:
set
- the list of components in this composite parameter
-
addComponent
public void addComponent(ExtractedParameterValue... component)
-
-