Examples of IncludeParameter


Examples of ca.uhn.fhir.rest.param.IncludeParameter

                + PathSpecification.class.getSimpleName() + ">");
          }
          Class<? extends Collection<PathSpecification>> instantiableCollectionType = (Class<? extends Collection<PathSpecification>>) CollectionBinder.getInstantiableCollectionType(
              innerCollectionType, "Method '" + method.getName() + "'");

          param = new IncludeParameter((IncludeParam) nextAnnotation, instantiableCollectionType);
        } else if (nextAnnotation instanceof ResourceParam) {
          if (!IResource.class.isAssignableFrom(parameterType)) {
            throw new ConfigurationException("Method '" + method.getName() + "' is annotated with @" + ResourceParam.class.getSimpleName()
                + " but has a type that is not an implemtation of " + IResource.class.getCanonicalName());
          }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.