Package ca.uhn.fhir.model.dstu.resource

Source Code of ca.uhn.fhir.model.dstu.resource.Query$Response
















package ca.uhn.fhir.model.dstu.resource;


import java.util.List;

import ca.uhn.fhir.model.api.BaseElement;
import ca.uhn.fhir.model.api.BaseResource;
import ca.uhn.fhir.model.api.ExtensionDt;
import ca.uhn.fhir.model.api.IElement;
import ca.uhn.fhir.model.api.IResource;
import ca.uhn.fhir.model.api.IResourceBlock;
import ca.uhn.fhir.model.api.annotation.Block;
import ca.uhn.fhir.model.api.annotation.Child;
import ca.uhn.fhir.model.api.annotation.Description;
import ca.uhn.fhir.model.api.annotation.ResourceDef;
import ca.uhn.fhir.model.dstu.composite.ResourceReferenceDt;
import ca.uhn.fhir.model.dstu.valueset.QueryOutcomeEnum;
import ca.uhn.fhir.model.primitive.BoundCodeDt;
import ca.uhn.fhir.model.primitive.CodeDt;
import ca.uhn.fhir.model.primitive.IntegerDt;
import ca.uhn.fhir.model.primitive.UriDt;


/**
* HAPI/FHIR <b>Query</b> Resource
* (A description of a query with a set of parameters)
*
* <p>
* <b>Definition:</b>
*
* </p>
*
* <p>
* <b>Requirements:</b>
*
* </p>
*
* <p>
* <b>Profile Definition:</b>
* <a href="http://hl7.org/fhir/profiles/Query">http://hl7.org/fhir/profiles/Query</a>
* </p>
*
*/
@ResourceDef(name="Query", profile="http://hl7.org/fhir/profiles/Query", id="query")
public class Query extends BaseResource implements IResource {

  /**
   * Search parameter constant for <b>identifier</b>
   * <p>
   * Description: <b></b><br/>
   * Type: <b>token</b><br/>
   * Path: <b>Query.identifier</b><br/>
   * </p>
   */
  public static final String SP_IDENTIFIER = "identifier";

  /**
   * Search parameter constant for <b>response</b>
   * <p>
   * Description: <b></b><br/>
   * Type: <b>token</b><br/>
   * Path: <b>Query.response.identifier</b><br/>
   * </p>
   */
  public static final String SP_RESPONSE = "response";


  @Child(name="identifier", type=UriDt.class, order=0, min=1, max=1
  @Description(
    shortDefinition="Links query and its response(s)",
    formalDefinition=""
  )
  private UriDt myIdentifier;
 
  @Child(name="parameter", type=ExtensionDt.class, order=1, min=1, max=Child.MAX_UNLIMITED
  @Description(
    shortDefinition="Set of query parameters with values",
    formalDefinition=""
  )
  private java.util.List<ExtensionDt> myParameter;
 
  @Child(name="response", order=2, min=0, max=1
  @Description(
    shortDefinition="If this is a response to a query",
    formalDefinition=""
  )
  private Response myResponse;
 

  @Override
  public boolean isEmpty() {
    return super.isBaseEmpty() && ca.uhn.fhir.util.ElementUtil.isEmptymyIdentifier,  myParameter,  myResponse);
  }
 
  @Override
  public java.util.List<IElement> getAllPopulatedChildElements() {
    return getAllPopulatedChildElementsOfType(null);
  }

  @Override
  public <T extends IElement> List<T> getAllPopulatedChildElementsOfType(Class<T> theType) {
    return ca.uhn.fhir.util.ElementUtil.allPopulatedChildElements(theType, myIdentifier, myParameter, myResponse);
  }

  /**
   * Gets the value(s) for <b>identifier</b> (Links query and its response(s)).
   * creating it if it does
   * not exist. Will not return <code>null</code>.
   *
     * <p>
     * <b>Definition:</b>
     *
     * </p>
   */
  public UriDt getIdentifier() { 
    if (myIdentifier == null) {
      myIdentifier = new UriDt();
    }
    return myIdentifier;
  }

  /**
   * Sets the value(s) for <b>identifier</b> (Links query and its response(s))
   *
     * <p>
     * <b>Definition:</b>
     *
     * </p>
   */
  public Query setIdentifier(UriDt theValue) {
    myIdentifier = theValue;
    return this;
  }

   /**
   * Sets the value for <b>identifier</b> (Links query and its response(s))
   *
     * <p>
     * <b>Definition:</b>
     *
     * </p>
   */
  public Query setIdentifier( String theUri) {
    myIdentifier = new UriDt(theUri);
    return this;
  }

  /**
   * Gets the value(s) for <b>parameter</b> (Set of query parameters with values).
   * creating it if it does
   * not exist. Will not return <code>null</code>.
   *
     * <p>
     * <b>Definition:</b>
     *
     * </p>
   */
  public java.util.List<ExtensionDt> getParameter() { 
    if (myParameter == null) {
      myParameter = new java.util.ArrayList<ExtensionDt>();
    }
    return myParameter;
  }

  /**
   * Sets the value(s) for <b>parameter</b> (Set of query parameters with values)
   *
     * <p>
     * <b>Definition:</b>
     *
     * </p>
   */
  public Query setParameter(java.util.List<ExtensionDt> theValue) {
    myParameter = theValue;
    return this;
  }

  /**
   * Adds and returns a new value for <b>parameter</b> (Set of query parameters with values)
   *
     * <p>
     * <b>Definition:</b>
     *
     * </p>
   */
  public ExtensionDt addParameter() {
    ExtensionDt newType = new ExtensionDt();
    getParameter().add(newType);
    return newType;
  }

  /**
   * Gets the first repetition for <b>parameter</b> (Set of query parameters with values),
   * creating it if it does not already exist.
   *
     * <p>
     * <b>Definition:</b>
     *
     * </p>
   */
  public ExtensionDt getParameterFirstRep() {
    if (getParameter().isEmpty()) {
      return addParameter();
    }
    return getParameter().get(0);
  }
 
  /**
   * Gets the value(s) for <b>response</b> (If this is a response to a query).
   * creating it if it does
   * not exist. Will not return <code>null</code>.
   *
     * <p>
     * <b>Definition:</b>
     *
     * </p>
   */
  public Response getResponse() { 
    if (myResponse == null) {
      myResponse = new Response();
    }
    return myResponse;
  }

  /**
   * Sets the value(s) for <b>response</b> (If this is a response to a query)
   *
     * <p>
     * <b>Definition:</b>
     *
     * </p>
   */
  public Query setResponse(Response theValue) {
    myResponse = theValue;
    return this;
  }

 
  /**
   * Block class for child element: <b>Query.response</b> (If this is a response to a query)
   *
     * <p>
     * <b>Definition:</b>
     *
     * </p>
   */
  @Block(name="Query.response"
  public static class Response extends BaseElement implements IResourceBlock {
 
  @Child(name="identifier", type=UriDt.class, order=0, min=1, max=1
  @Description(
    shortDefinition="Links response to source query",
    formalDefinition=""
  )
  private UriDt myIdentifier;
 
  @Child(name="outcome", type=CodeDt.class, order=1, min=1, max=1
  @Description(
    shortDefinition="ok | limited | refused | error",
    formalDefinition="Outcome of processing the query"
  )
  private BoundCodeDt<QueryOutcomeEnum> myOutcome;
 
  @Child(name="total", type=IntegerDt.class, order=2, min=0, max=1
  @Description(
    shortDefinition="Total number of matching records",
    formalDefinition=""
  )
  private IntegerDt myTotal;
 
  @Child(name="parameter", type=ExtensionDt.class, order=3, min=0, max=Child.MAX_UNLIMITED
  @Description(
    shortDefinition="Parameters server used",
    formalDefinition=""
  )
  private java.util.List<ExtensionDt> myParameter;
 
  @Child(name="first", type=ExtensionDt.class, order=4, min=0, max=Child.MAX_UNLIMITED
  @Description(
    shortDefinition="To get first page (if paged)",
    formalDefinition=""
  )
  private java.util.List<ExtensionDt> myFirst;
 
  @Child(name="previous", type=ExtensionDt.class, order=5, min=0, max=Child.MAX_UNLIMITED
  @Description(
    shortDefinition="To get previous page (if paged)",
    formalDefinition=""
  )
  private java.util.List<ExtensionDt> myPrevious;
 
  @Child(name="next", type=ExtensionDt.class, order=6, min=0, max=Child.MAX_UNLIMITED
  @Description(
    shortDefinition="To get next page (if paged)",
    formalDefinition=""
  )
  private java.util.List<ExtensionDt> myNext;
 
  @Child(name="last", type=ExtensionDt.class, order=7, min=0, max=Child.MAX_UNLIMITED
  @Description(
    shortDefinition="To get last page (if paged)",
    formalDefinition=""
  )
  private java.util.List<ExtensionDt> myLast;
 
  @Child(name="reference", order=8, min=0, max=Child.MAX_UNLIMITED, type={
    IResource.class  })
  @Description(
    shortDefinition="Resources that are the results of the search",
    formalDefinition=""
  )
  private java.util.List<ResourceReferenceDt> myReference;
 

  @Override
  public boolean isEmpty() {
    return super.isBaseEmpty() && ca.uhn.fhir.util.ElementUtil.isEmptymyIdentifier,  myOutcome,  myTotal,  myParameter,  myFirst,  myPrevious,  myNext,  myLast,  myReference);
  }
 
  @Override
  public java.util.List<IElement> getAllPopulatedChildElements() {
    return getAllPopulatedChildElementsOfType(null);
  }

  @Override
  public <T extends IElement> List<T> getAllPopulatedChildElementsOfType(Class<T> theType) {
    return ca.uhn.fhir.util.ElementUtil.allPopulatedChildElements(theType, myIdentifier, myOutcome, myTotal, myParameter, myFirst, myPrevious, myNext, myLast, myReference);
  }

  /**
   * Gets the value(s) for <b>identifier</b> (Links response to source query).
   * creating it if it does
   * not exist. Will not return <code>null</code>.
   *
     * <p>
     * <b>Definition:</b>
     *
     * </p>
   */
  public UriDt getIdentifier() { 
    if (myIdentifier == null) {
      myIdentifier = new UriDt();
    }
    return myIdentifier;
  }

  /**
   * Sets the value(s) for <b>identifier</b> (Links response to source query)
   *
     * <p>
     * <b>Definition:</b>
     *
     * </p>
   */
  public Response setIdentifier(UriDt theValue) {
    myIdentifier = theValue;
    return this;
  }

   /**
   * Sets the value for <b>identifier</b> (Links response to source query)
   *
     * <p>
     * <b>Definition:</b>
     *
     * </p>
   */
  public Response setIdentifier( String theUri) {
    myIdentifier = new UriDt(theUri);
    return this;
  }

  /**
   * Gets the value(s) for <b>outcome</b> (ok | limited | refused | error).
   * creating it if it does
   * not exist. Will not return <code>null</code>.
   *
     * <p>
     * <b>Definition:</b>
     * Outcome of processing the query
     * </p>
   */
  public BoundCodeDt<QueryOutcomeEnum> getOutcome() { 
    if (myOutcome == null) {
      myOutcome = new BoundCodeDt<QueryOutcomeEnum>(QueryOutcomeEnum.VALUESET_BINDER);
    }
    return myOutcome;
  }

  /**
   * Sets the value(s) for <b>outcome</b> (ok | limited | refused | error)
   *
     * <p>
     * <b>Definition:</b>
     * Outcome of processing the query
     * </p>
   */
  public Response setOutcome(BoundCodeDt<QueryOutcomeEnum> theValue) {
    myOutcome = theValue;
    return this;
  }

  /**
   * Sets the value(s) for <b>outcome</b> (ok | limited | refused | error)
   *
     * <p>
     * <b>Definition:</b>
     * Outcome of processing the query
     * </p>
   */
  public Response setOutcome(QueryOutcomeEnum theValue) {
    getOutcome().setValueAsEnum(theValue);
    return this;
  }

 
  /**
   * Gets the value(s) for <b>total</b> (Total number of matching records).
   * creating it if it does
   * not exist. Will not return <code>null</code>.
   *
     * <p>
     * <b>Definition:</b>
     *
     * </p>
   */
  public IntegerDt getTotal() { 
    if (myTotal == null) {
      myTotal = new IntegerDt();
    }
    return myTotal;
  }

  /**
   * Sets the value(s) for <b>total</b> (Total number of matching records)
   *
     * <p>
     * <b>Definition:</b>
     *
     * </p>
   */
  public Response setTotal(IntegerDt theValue) {
    myTotal = theValue;
    return this;
  }

   /**
   * Sets the value for <b>total</b> (Total number of matching records)
   *
     * <p>
     * <b>Definition:</b>
     *
     * </p>
   */
  public Response setTotal( int theInteger) {
    myTotal = new IntegerDt(theInteger);
    return this;
  }

  /**
   * Gets the value(s) for <b>parameter</b> (Parameters server used).
   * creating it if it does
   * not exist. Will not return <code>null</code>.
   *
     * <p>
     * <b>Definition:</b>
     *
     * </p>
   */
  public java.util.List<ExtensionDt> getParameter() { 
    if (myParameter == null) {
      myParameter = new java.util.ArrayList<ExtensionDt>();
    }
    return myParameter;
  }

  /**
   * Sets the value(s) for <b>parameter</b> (Parameters server used)
   *
     * <p>
     * <b>Definition:</b>
     *
     * </p>
   */
  public Response setParameter(java.util.List<ExtensionDt> theValue) {
    myParameter = theValue;
    return this;
  }

  /**
   * Adds and returns a new value for <b>parameter</b> (Parameters server used)
   *
     * <p>
     * <b>Definition:</b>
     *
     * </p>
   */
  public ExtensionDt addParameter() {
    ExtensionDt newType = new ExtensionDt();
    getParameter().add(newType);
    return newType;
  }

  /**
   * Gets the first repetition for <b>parameter</b> (Parameters server used),
   * creating it if it does not already exist.
   *
     * <p>
     * <b>Definition:</b>
     *
     * </p>
   */
  public ExtensionDt getParameterFirstRep() {
    if (getParameter().isEmpty()) {
      return addParameter();
    }
    return getParameter().get(0);
  }
 
  /**
   * Gets the value(s) for <b>first</b> (To get first page (if paged)).
   * creating it if it does
   * not exist. Will not return <code>null</code>.
   *
     * <p>
     * <b>Definition:</b>
     *
     * </p>
   */
  public java.util.List<ExtensionDt> getFirst() { 
    if (myFirst == null) {
      myFirst = new java.util.ArrayList<ExtensionDt>();
    }
    return myFirst;
  }

  /**
   * Sets the value(s) for <b>first</b> (To get first page (if paged))
   *
     * <p>
     * <b>Definition:</b>
     *
     * </p>
   */
  public Response setFirst(java.util.List<ExtensionDt> theValue) {
    myFirst = theValue;
    return this;
  }

  /**
   * Adds and returns a new value for <b>first</b> (To get first page (if paged))
   *
     * <p>
     * <b>Definition:</b>
     *
     * </p>
   */
  public ExtensionDt addFirst() {
    ExtensionDt newType = new ExtensionDt();
    getFirst().add(newType);
    return newType;
  }

  /**
   * Gets the first repetition for <b>first</b> (To get first page (if paged)),
   * creating it if it does not already exist.
   *
     * <p>
     * <b>Definition:</b>
     *
     * </p>
   */
  public ExtensionDt getFirstFirstRep() {
    if (getFirst().isEmpty()) {
      return addFirst();
    }
    return getFirst().get(0);
  }
 
  /**
   * Gets the value(s) for <b>previous</b> (To get previous page (if paged)).
   * creating it if it does
   * not exist. Will not return <code>null</code>.
   *
     * <p>
     * <b>Definition:</b>
     *
     * </p>
   */
  public java.util.List<ExtensionDt> getPrevious() { 
    if (myPrevious == null) {
      myPrevious = new java.util.ArrayList<ExtensionDt>();
    }
    return myPrevious;
  }

  /**
   * Sets the value(s) for <b>previous</b> (To get previous page (if paged))
   *
     * <p>
     * <b>Definition:</b>
     *
     * </p>
   */
  public Response setPrevious(java.util.List<ExtensionDt> theValue) {
    myPrevious = theValue;
    return this;
  }

  /**
   * Adds and returns a new value for <b>previous</b> (To get previous page (if paged))
   *
     * <p>
     * <b>Definition:</b>
     *
     * </p>
   */
  public ExtensionDt addPrevious() {
    ExtensionDt newType = new ExtensionDt();
    getPrevious().add(newType);
    return newType;
  }

  /**
   * Gets the first repetition for <b>previous</b> (To get previous page (if paged)),
   * creating it if it does not already exist.
   *
     * <p>
     * <b>Definition:</b>
     *
     * </p>
   */
  public ExtensionDt getPreviousFirstRep() {
    if (getPrevious().isEmpty()) {
      return addPrevious();
    }
    return getPrevious().get(0);
  }
 
  /**
   * Gets the value(s) for <b>next</b> (To get next page (if paged)).
   * creating it if it does
   * not exist. Will not return <code>null</code>.
   *
     * <p>
     * <b>Definition:</b>
     *
     * </p>
   */
  public java.util.List<ExtensionDt> getNext() { 
    if (myNext == null) {
      myNext = new java.util.ArrayList<ExtensionDt>();
    }
    return myNext;
  }

  /**
   * Sets the value(s) for <b>next</b> (To get next page (if paged))
   *
     * <p>
     * <b>Definition:</b>
     *
     * </p>
   */
  public Response setNext(java.util.List<ExtensionDt> theValue) {
    myNext = theValue;
    return this;
  }

  /**
   * Adds and returns a new value for <b>next</b> (To get next page (if paged))
   *
     * <p>
     * <b>Definition:</b>
     *
     * </p>
   */
  public ExtensionDt addNext() {
    ExtensionDt newType = new ExtensionDt();
    getNext().add(newType);
    return newType;
  }

  /**
   * Gets the first repetition for <b>next</b> (To get next page (if paged)),
   * creating it if it does not already exist.
   *
     * <p>
     * <b>Definition:</b>
     *
     * </p>
   */
  public ExtensionDt getNextFirstRep() {
    if (getNext().isEmpty()) {
      return addNext();
    }
    return getNext().get(0);
  }
 
  /**
   * Gets the value(s) for <b>last</b> (To get last page (if paged)).
   * creating it if it does
   * not exist. Will not return <code>null</code>.
   *
     * <p>
     * <b>Definition:</b>
     *
     * </p>
   */
  public java.util.List<ExtensionDt> getLast() { 
    if (myLast == null) {
      myLast = new java.util.ArrayList<ExtensionDt>();
    }
    return myLast;
  }

  /**
   * Sets the value(s) for <b>last</b> (To get last page (if paged))
   *
     * <p>
     * <b>Definition:</b>
     *
     * </p>
   */
  public Response setLast(java.util.List<ExtensionDt> theValue) {
    myLast = theValue;
    return this;
  }

  /**
   * Adds and returns a new value for <b>last</b> (To get last page (if paged))
   *
     * <p>
     * <b>Definition:</b>
     *
     * </p>
   */
  public ExtensionDt addLast() {
    ExtensionDt newType = new ExtensionDt();
    getLast().add(newType);
    return newType;
  }

  /**
   * Gets the first repetition for <b>last</b> (To get last page (if paged)),
   * creating it if it does not already exist.
   *
     * <p>
     * <b>Definition:</b>
     *
     * </p>
   */
  public ExtensionDt getLastFirstRep() {
    if (getLast().isEmpty()) {
      return addLast();
    }
    return getLast().get(0);
  }
 
  /**
   * Gets the value(s) for <b>reference</b> (Resources that are the results of the search).
   * creating it if it does
   * not exist. Will not return <code>null</code>.
   *
     * <p>
     * <b>Definition:</b>
     *
     * </p>
   */
  public java.util.List<ResourceReferenceDt> getReference() { 
    if (myReference == null) {
      myReference = new java.util.ArrayList<ResourceReferenceDt>();
    }
    return myReference;
  }

  /**
   * Sets the value(s) for <b>reference</b> (Resources that are the results of the search)
   *
     * <p>
     * <b>Definition:</b>
     *
     * </p>
   */
  public Response setReference(java.util.List<ResourceReferenceDt> theValue) {
    myReference = theValue;
    return this;
  }

  /**
   * Adds and returns a new value for <b>reference</b> (Resources that are the results of the search)
   *
     * <p>
     * <b>Definition:</b>
     *
     * </p>
   */
  public ResourceReferenceDt addReference() {
    ResourceReferenceDt newType = new ResourceReferenceDt();
    getReference().add(newType);
    return newType;
  }
 

  }




}
TOP

Related Classes of ca.uhn.fhir.model.dstu.resource.Query$Response

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.