Definition: A technical identifier - identifies some entity uniquely and unambiguously
Requirements: Need to be able to identify things with confidence and be sure that the identification is not subject to misinterpretation
228229230231232233234235
*/ public Availability addIdentifier( IdentifierUseEnum theUse, String theSystem, String theValue, String theLabel) { if (myIdentifier == null) { myIdentifier = new java.util.ArrayList<IdentifierDt>(); } myIdentifier.add(new IdentifierDt(theUse, theSystem, theValue, theLabel)); return this; }
246247248249250251252253
*/ public Availability addIdentifier( String theSystem, String theValue) { if (myIdentifier == null) { myIdentifier = new java.util.ArrayList<IdentifierDt>(); } myIdentifier.add(new IdentifierDt(theSystem, theValue)); return this; }
252253254255256257258259260
* Unique identifier for this supply request * </p> */ public IdentifierDt getIdentifier() { if (myIdentifier == null) { myIdentifier = new IdentifierDt(); } return myIdentifier; }
279280281282283284285286
* <b>Definition:</b> * Unique identifier for this supply request * </p> */ public Supply setIdentifier( IdentifierUseEnum theUse, String theSystem, String theValue, String theLabel) { myIdentifier = new IdentifierDt(theUse, theSystem, theValue, theLabel); return this; }
292293294295296297298299
* <b>Definition:</b> * Unique identifier for this supply request * </p> */ public Supply setIdentifier( String theSystem, String theValue) { myIdentifier = new IdentifierDt(theSystem, theValue); return this; }
573574575576577578579580581
* Identifier assigned by the dispensing facility when the dispense occurs * </p> */ public IdentifierDt getIdentifier() { if (myIdentifier == null) { myIdentifier = new IdentifierDt(); } return myIdentifier; }
600601602603604605606607
* <b>Definition:</b> * Identifier assigned by the dispensing facility when the dispense occurs * </p> */ public Dispense setIdentifier( IdentifierUseEnum theUse, String theSystem, String theValue, String theLabel) { myIdentifier = new IdentifierDt(theUse, theSystem, theValue, theLabel); return this; }
613614615616617618619620
* <b>Definition:</b> * Identifier assigned by the dispensing facility when the dispense occurs * </p> */ public Dispense setIdentifier( String theSystem, String theValue) { myIdentifier = new IdentifierDt(theSystem, theValue); return this; }
296297298299300301302303304
* Logical Identifier for the composition, assigned when created. This identifier stays constant as the composition is changed over time * </p> */ public IdentifierDt getIdentifier() { if (myIdentifier == null) { myIdentifier = new IdentifierDt(); } return myIdentifier; }
323324325326327328329330
* <b>Definition:</b> * Logical Identifier for the composition, assigned when created. This identifier stays constant as the composition is changed over time * </p> */ public Composition setIdentifier( IdentifierUseEnum theUse, String theSystem, String theValue, String theLabel) { myIdentifier = new IdentifierDt(theUse, theSystem, theValue, theLabel); return this; }