Package ca.uhn.fhir.rest.client

Examples of ca.uhn.fhir.rest.client.DeleteClientInvocation


    if (idDt == null) {
      throw new NullPointerException("ID can not be null");
    }
    String id = idDt.getValue();

    DeleteClientInvocation retVal = new DeleteClientInvocation(getResourceName(), id);

    return retVal;
  }
View Full Code Here


    if (idDt == null) {
      throw new NullPointerException("ID can not be null");
    }
    String resourceName = getResourceName();
   
    DeleteClientInvocation retVal = createDeleteInvocation(resourceName, idDt);

    for (int idx = 0; idx < theArgs.length; idx++) {
      IParameter nextParam = getParameters().get(idx);
      nextParam.translateClientArgumentIntoQueryArgument(theArgs[idx], null, retVal);
    }
View Full Code Here

    return retVal;
  }

  public static DeleteClientInvocation createDeleteInvocation(String theResourceName, IdDt idDt) {
    String id = idDt.getValue();
    DeleteClientInvocation retVal = new DeleteClientInvocation(theResourceName, id);
    return retVal;
  }
View Full Code Here

    if (idDt == null) {
      throw new NullPointerException("ID can not be null");
    }
    String id = idDt.getValue();

    DeleteClientInvocation retVal = new DeleteClientInvocation(getResourceName(), id);

    return retVal;
  }
View Full Code Here

TOP

Related Classes of ca.uhn.fhir.rest.client.DeleteClientInvocation

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.