Package ca.uhn.fhir.model.dstu.composite

Examples of ca.uhn.fhir.model.dstu.composite.IdentifierDt


     * <b>Definition:</b>
     * Identifies a style or collective of coverage issues by the underwriter, for example may be used to identify a class of coverage or employer group. May also be referred to as a Policy or Group ID.
     * </p>
   */
  public Coverage setPlan( String theSystem,  String theValue) {
    myPlan = new IdentifierDt(theSystem, theValue);
    return this;
  }
View Full Code Here


     * Identifies a sub-style or sub-collective of coverage issues by the underwriter, for example may be used to identify a specific employer group within a class of employers. May be referred to as a Section or Division ID.
     * </p>
   */
  public IdentifierDt getSubplan() { 
    if (mySubplan == null) {
      mySubplan = new IdentifierDt();
    }
    return mySubplan;
  }
View Full Code Here

     * <b>Definition:</b>
     * Identifies a sub-style or sub-collective of coverage issues by the underwriter, for example may be used to identify a specific employer group within a class of employers. May be referred to as a Section or Division ID.
     * </p>
   */
  public Coverage setSubplan( IdentifierUseEnum theUse,  String theSystem,  String theValue,  String theLabel) {
    mySubplan = new IdentifierDt(theUse, theSystem, theValue, theLabel);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * Identifies a sub-style or sub-collective of coverage issues by the underwriter, for example may be used to identify a specific employer group within a class of employers. May be referred to as a Section or Division ID.
     * </p>
   */
  public Coverage setSubplan( String theSystem,  String theValue) {
    mySubplan = new IdentifierDt(theSystem, theValue);
    return this;
  }
View Full Code Here

     * Unique code or number identifying the location to its users
     * </p>
   */
  public IdentifierDt getIdentifier() { 
    if (myIdentifier == null) {
      myIdentifier = new IdentifierDt();
    }
    return myIdentifier;
  }
View Full Code Here

     * <b>Definition:</b>
     * Unique code or number identifying the location to its users
     * </p>
   */
  public Location setIdentifier( IdentifierUseEnum theUse,  String theSystem,  String theValue,  String theLabel) {
    myIdentifier = new IdentifierDt(theUse, theSystem, theValue, theLabel);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * Unique code or number identifying the location to its users
     * </p>
   */
  public Location setIdentifier( String theSystem,  String theValue) {
    myIdentifier = new IdentifierDt(theSystem, theValue);
    return this;
  }
View Full Code Here

     * The claim issuer and claim number
     * </p>
   */
  public IdentifierDt getNumber() { 
    if (myNumber == null) {
      myNumber = new IdentifierDt();
    }
    return myNumber;
  }
View Full Code Here

     * <b>Definition:</b>
     * The claim issuer and claim number
     * </p>
   */
  public Claim setNumber( IdentifierUseEnum theUse,  String theSystem,  String theValue,  String theLabel) {
    myNumber = new IdentifierDt(theUse, theSystem, theValue, theLabel);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * The claim issuer and claim number
     * </p>
   */
  public Claim setNumber( String theSystem,  String theValue) {
    myNumber = new IdentifierDt(theSystem, theValue);
    return this;
  }
View Full Code Here

TOP

Related Classes of ca.uhn.fhir.model.dstu.composite.IdentifierDt

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.