Package ca.uhn.fhir.rest.method

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


  public List<QualifiedParamList> encode(FhirContext theContext, Object theObject) throws InternalErrorException {
    ArrayList<QualifiedParamList> retVal = new ArrayList<QualifiedParamList>();

    List<IQueryParameterOr> val = myParamBinder.encode(theContext, theObject);
    for (IQueryParameterOr nextOr : val) {
      retVal.add(new QualifiedParamList(theContext, nextOr));
    }

    return retVal;
  }
View Full Code Here

TOP

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

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.