Package ca.uhn.fhir.model.primitive

Examples of ca.uhn.fhir.model.primitive.IdDt


   */
  public StructureElementDefinition addCondition( String theId) {
    if (myCondition == null) {
      myCondition = new java.util.ArrayList<IdDt>();
    }
    myCondition.add(new IdDt(theId));
    return this;
  }
View Full Code Here


     * Allows identification of which elements have their cardinalities impacted by the constraint.  Will not be referenced for constraints that do not affect cardinality
     * </p>
   */
  public IdDt getKey() { 
    if (myKey == null) {
      myKey = new IdDt();
    }
    return myKey;
  }
View Full Code Here

     * <b>Definition:</b>
     * Allows identification of which elements have their cardinalities impacted by the constraint.  Will not be referenced for constraints that do not affect cardinality
     * </p>
   */
  public StructureElementDefinitionConstraint setKey( String theId) {
    myKey = new IdDt(theId);
    return this;
  }
View Full Code Here

     * An internal reference to the definition of a mapping
     * </p>
   */
  public IdDt getIdentity() { 
    if (myIdentity == null) {
      myIdentity = new IdDt();
    }
    return myIdentity;
  }
View Full Code Here

     * <b>Definition:</b>
     * An internal reference to the definition of a mapping
     * </p>
   */
  public StructureElementDefinitionMapping setIdentity( String theId) {
    myIdentity = new IdDt(theId);
    return this;
  }
View Full Code Here

     * The version of the FHIR specification on which this conformance statement is based
     * </p>
   */
  public IdDt getFhirVersion() { 
    if (myFhirVersion == null) {
      myFhirVersion = new IdDt();
    }
    return myFhirVersion;
  }
View Full Code Here

     * <b>Definition:</b>
     * The version of the FHIR specification on which this conformance statement is based
     * </p>
   */
  public Conformance setFhirVersion( String theId) {
    myFhirVersion = new IdDt(theId);
    return this;
  }
View Full Code Here

    return resp;
  }

  @Override
  public MethodOutcome delete(Class<? extends IResource> theType, String theId) {
    return delete(theType, new IdDt(theId));
  }
View Full Code Here

  }

  @Override
  public <T extends IResource> Bundle history(final Class<T> theType, IdDt theIdDt, DateTimeDt theSince, Integer theLimit) {
    String resourceName = theType != null ? toResourceName(theType) : null;
    IdDt id = theIdDt != null && theIdDt.isEmpty() == false ? theIdDt : null;
    HttpGetClientInvocation invocation = HistoryMethodBinding.createHistoryInvocation(resourceName, id, theSince, theLimit);
    if (isKeepResponses()) {
      myLastRequest = invocation.asHttpRequest(getServerBase(), createExtraParams(), getEncoding());
    }
View Full Code Here

  }

  @Override
  public <T extends IResource> Bundle history(Class<T> theType, String theId, DateTimeDt theSince, Integer theLimit) {
    return history(theType, new IdDt(theId), theSince, theLimit);
  }
View Full Code Here

TOP

Related Classes of ca.uhn.fhir.model.primitive.IdDt

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.