com.ibm.fhir.persistence.jdbc.dto.TokenParmVal Maven / Gradle / Ivy
/*
* (C) Copyright IBM Corp. 2017,2021
*
* SPDX-License-Identifier: Apache-2.0
*/
package com.ibm.fhir.persistence.jdbc.dto;
import com.ibm.fhir.persistence.exception.FHIRPersistenceException;
import com.ibm.fhir.persistence.jdbc.JDBCConstants;
/**
* This class defines the Data Transfer Object representing a row in the X_TOKEN_VALUES tables.
*/
public class TokenParmVal implements ExtractedParameterValue {
private String resourceType;
private String name;
private String valueSystem;
private String valueCode;
// The SearchParameter base type. If "Resource", then this is a Resource-level attribute
private String base;
public TokenParmVal() {
super();
}
@Override
public String toString() {
// to aid debugging
return getResourceType() + "[" + getName() + ", " + getValueSystem() + ", " + getValueCode() + "]";
}
public void setName(String name) {
this.name = name;
}
public String getName() {
return name;
}
public String getValueSystem() {
if (valueSystem == null) {
return JDBCConstants.DEFAULT_TOKEN_SYSTEM;
}
return valueSystem;
}
public void setValueSystem(String valueSystem) {
this.valueSystem = valueSystem;
}
public String getValueCode() {
return valueCode;
}
public void setValueCode(String valueCode) {
this.valueCode = valueCode;
}
public String getResourceType() {
return resourceType;
}
public void setResourceType(String resourceType) {
this.resourceType = resourceType;
}
/**
* We know our type, so we can call the correct method on the visitor
*/
public void accept(ExtractedParameterValueVisitor visitor) throws FHIRPersistenceException {
visitor.visit(this);
}
/**
* @return the base
*/
public String getBase() {
return base;
}
/**
* @param base the base to set
*/
public void setBase(String base) {
this.base = base;
}
}