ca.uhn.fhir.context.RuntimeChildContainedResources Maven / Gradle / Ivy
/*
* #%L
* HAPI FHIR - Core Library
* %%
* Copyright (C) 2014 - 2024 Smile CDR, Inc.
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #L%
*/
package ca.uhn.fhir.context;
import ca.uhn.fhir.i18n.Msg;
import ca.uhn.fhir.model.api.annotation.Child;
import ca.uhn.fhir.model.api.annotation.Description;
import ca.uhn.fhir.model.base.composite.BaseContainedDt;
import org.hl7.fhir.instance.model.api.IBase;
import org.hl7.fhir.instance.model.api.IBaseResource;
import java.lang.reflect.Field;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.Set;
public class RuntimeChildContainedResources extends BaseRuntimeDeclaredChildDefinition {
private BaseRuntimeElementDefinition> myElem;
RuntimeChildContainedResources(
Field theField, Child theChildAnnotation, Description theDescriptionAnnotation, String theElementName)
throws ConfigurationException {
super(theField, theChildAnnotation, theDescriptionAnnotation, theElementName);
}
@Override
public int getMax() {
return Child.MAX_UNLIMITED;
}
@Override
public int getMin() {
return 0;
}
@Override
public BaseRuntimeElementDefinition> getChildByName(String theName) {
assert theName.equals(getElementName());
return myElem;
}
@Override
public BaseRuntimeElementDefinition> getChildElementDefinitionByDatatype(Class extends IBase> theType) {
return myElem;
}
@Override
public String getChildNameByDatatype(Class extends IBase> theType) {
return getElementName();
}
@Override
public Set getValidChildNames() {
return Collections.singleton(getElementName());
}
@Override
void sealAndInitialize(
FhirContext theContext,
Map, BaseRuntimeElementDefinition>> theClassToElementDefinitions) {
Class> actualType = theContext.getVersion().getContainedType();
if (BaseContainedDt.class.isAssignableFrom(actualType)) {
@SuppressWarnings("unchecked")
Class extends BaseContainedDt> type = (Class extends BaseContainedDt>) actualType;
myElem = new RuntimeElemContainedResources(type, false);
} else if (List.class.isAssignableFrom(actualType)) {
myElem = new RuntimeElemContainedResourceList(IBaseResource.class, false);
} else {
throw new ConfigurationException(
Msg.code(1735) + "Fhir Version definition returned invalid contained type: " + actualType);
}
}
}