This commit is contained in:
James 2016-10-22 18:01:27 -04:00
parent 2a7fa4d8a5
commit ccd304d2cf
1 changed files with 9 additions and 0 deletions

View File

@ -118,11 +118,20 @@ public class JpaConformanceProviderDstu3 extends org.hl7.fhir.dstu3.hapi.rest.se
} }
} }
massage(retVal);
retVal.getImplementation().setDescription(myImplementationDescription); retVal.getImplementation().setDescription(myImplementationDescription);
myCachedValue = retVal; myCachedValue = retVal;
return retVal; return retVal;
} }
/**
* Subclasses may override
*/
protected void massage(Conformance theStatement) {
// nothing
}
public void setDaoConfig(DaoConfig myDaoConfig) { public void setDaoConfig(DaoConfig myDaoConfig) {
this.myDaoConfig = myDaoConfig; this.myDaoConfig = myDaoConfig;
} }