Package ca.uhn.fhir.rest.annotation

Examples of ca.uhn.fhir.rest.annotation.Delete.resourceType()


  public DeleteMethodBinding(Method theMethod, FhirContext theContext, IResourceProvider theProvider) {
    super(theMethod, theContext, Delete.class);

    Delete deleteAnnotation = theMethod.getAnnotation(Delete.class);
    Class<? extends IResource> resourceType = deleteAnnotation.resourceType();
    if (resourceType != Delete.NotSpecified.class) {
      RuntimeResourceDefinition def = theContext.getResourceDefinition(resourceType);
      myResourceName = def.getName();
    } else {
      if (theProvider != null) {
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.