Package ca.uhn.fhir.rest.method

Examples of ca.uhn.fhir.rest.method.RequestDetails


        b.append(" with parameters ");
        b.append(params.keySet());
        throw new InvalidRequestException(b.toString());
      }

      RequestDetails requestDetails = r;
      requestDetails.setResourceOperationType(resourceMethod.getResourceOperationType());
      requestDetails.setSystemOperationType(resourceMethod.getSystemOperationType());
      requestDetails.setOtherOperationType(resourceMethod.getOtherOperationType());

      for (IServerInterceptor next : myInterceptors) {
        boolean continueProcessing = next.incomingRequestPostProcessed(requestDetails, theRequest, theResponse);
        if (!continueProcessing) {
          return;
View Full Code Here

TOP

Related Classes of ca.uhn.fhir.rest.method.RequestDetails

Copyright © 2018 www.massapicom. 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.