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 voidaccept(ExtractedParameterValueVisitor visitor)We know our type, so we can call the correct method on the visitorvoidaddComponent(ExtractedParameterValue... component)StringgetBase()List<ExtractedParameterValue>getComponent()StringgetName()StringgetResourceType()voidsetBase(String base)voidsetComponent(List<ExtractedParameterValue> components)voidsetName(String name)voidsetResourceType(String resourceType) 
 - 
 
- 
- 
Method Detail
- 
setName
public void setName(String name)
- Specified by:
 setNamein interfaceExtractedParameterValue
 
- 
getName
public String getName()
- Specified by:
 getNamein interfaceExtractedParameterValue
 
- 
getResourceType
public String getResourceType()
- Specified by:
 getResourceTypein interfaceExtractedParameterValue
 
- 
setResourceType
public void setResourceType(String resourceType)
- Specified by:
 setResourceTypein 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:
 acceptin interfaceExtractedParameterValue- Throws:
 FHIRPersistenceException
 
- 
getBase
public String getBase()
- Specified by:
 getBasein interfaceExtractedParameterValue- Returns:
 - the base
 
 
- 
setBase
public void setBase(String base)
- Specified by:
 setBasein 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)
 
 - 
 
 -