All Downloads are FREE. Search and download functionalities are using the official Maven repository.

riv.ehr.patientsummary._1.SOFTWAREORDEVICE Maven / Gradle / Ivy


package riv.ehr.patientsummary._1;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 
 *         A piece of equipment or a device.
 *       
 * 
 * 

Java class for SOFTWARE_OR_DEVICE complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="SOFTWARE_OR_DEVICE">
 *   <complexContent>
 *     <extension base="{urn:riv:ehr:patientsummary:1}IDENTIFIED_ENTITY">
 *       <sequence>
 *         <element name="code" type="{urn:riv:ehr:patientsummary:1}CD"/>
 *         <element name="desc" type="{urn:riv:ehr:patientsummary:1}ST"/>
 *         <element name="manufacturerModelName" type="{urn:riv:ehr:patientsummary:1}ST"/>
 *         <element name="version" type="{urn:riv:ehr:patientsummary:1}ST" minOccurs="0"/>
 *         <element name="owningOrganisation_id" type="{urn:riv:ehr:patientsummary:1}ST" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SOFTWARE_OR_DEVICE", propOrder = { "code", "desc", "manufacturerModelName", "version", "owningOrganisationId" }) public class SOFTWAREORDEVICE extends IDENTIFIEDENTITY { @XmlElement(required = true) protected CD code; @XmlElement(required = true) protected ST desc; @XmlElement(required = true) protected ST manufacturerModelName; protected ST version; @XmlElement(name = "owningOrganisation_id") protected ST owningOrganisationId; /** * Gets the value of the code property. * * @return * possible object is * {@link CD } * */ public CD getCode() { return code; } /** * Sets the value of the code property. * * @param value * allowed object is * {@link CD } * */ public void setCode(CD value) { this.code = value; } /** * Gets the value of the desc property. * * @return * possible object is * {@link ST } * */ public ST getDesc() { return desc; } /** * Sets the value of the desc property. * * @param value * allowed object is * {@link ST } * */ public void setDesc(ST value) { this.desc = value; } /** * Gets the value of the manufacturerModelName property. * * @return * possible object is * {@link ST } * */ public ST getManufacturerModelName() { return manufacturerModelName; } /** * Sets the value of the manufacturerModelName property. * * @param value * allowed object is * {@link ST } * */ public void setManufacturerModelName(ST value) { this.manufacturerModelName = value; } /** * Gets the value of the version property. * * @return * possible object is * {@link ST } * */ public ST getVersion() { return version; } /** * Sets the value of the version property. * * @param value * allowed object is * {@link ST } * */ public void setVersion(ST value) { this.version = value; } /** * Gets the value of the owningOrganisationId property. * * @return * possible object is * {@link ST } * */ public ST getOwningOrganisationId() { return owningOrganisationId; } /** * Sets the value of the owningOrganisationId property. * * @param value * allowed object is * {@link ST } * */ public void setOwningOrganisationId(ST value) { this.owningOrganisationId = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy