org.projecthusky.common.hl7cdar2.PIVLPPDTS Maven / Gradle / Ivy
/*
* This code is made available under the terms of the Eclipse Public License v1.0
* in the github project https://github.com/project-husky/husky there you also
* find a list of the contributors and the license information.
*
* This project has been developed further and modified by the joined working group Husky
* on the basis of the eHealth Connector opensource project from June 28, 2021,
* whereas medshare GmbH is the initial and main contributor/author of the eHealth Connector.
*
*/
// Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert
// Siehe http://java.sun.com/xml/jaxb
// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren.
// Generiert: 2020.07.09 um 01:07:39 PM CEST
//
package org.projecthusky.common.hl7cdar2;
import org.checkerframework.checker.nullness.qual.NonNull;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
import java.util.ArrayList;
import java.util.List;
/**
* Note: because this type is defined as an extension of SXCM_T, all of the attributes and elements accepted for T are
* also accepted by this definition. However, they are NOT allowed by the normative description of this type.
* Unfortunately, we cannot write a general purpose schematron contraints to provide that extra validation, thus
* applications must be aware that instance (fragments) that pass validation with this might might still not be legal.
*
*
*
* Java-Klasse für PIVL_PPD_TS complex type.
*
*
* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <complexType name="PIVL_PPD_TS">
* <complexContent>
* <extension base="{urn:hl7-org:v3}SXCM_PPD_TS">
* <sequence>
* <element name="phase" type="{urn:hl7-org:v3}IVL_PPD_TS" minOccurs="0"/>
* <element name="period" type="{urn:hl7-org:v3}PPD_PQ" minOccurs="0"/>
* </sequence>
* <attribute name="alignment" type="{urn:hl7-org:v3}CalendarCycle" />
* <attribute name="institutionSpecified" type="{urn:hl7-org:v3}bl" default="false" />
* </extension>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PIVL_PPD_TS", propOrder = {"phase", "period"})
public class PIVLPPDTS extends SXCMPPDTS {
protected IVLPPDTS phase;
protected PPDPQ period;
@XmlAttribute(name = "alignment")
protected List alignment;
@XmlAttribute(name = "institutionSpecified")
protected Boolean institutionSpecified;
/**
* Gets the value of the alignment property.
*
*
* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to
* the returned list will be present inside the JAXB object. This is why there is not a
* set
method for the alignment property.
*
*
* For example, to add a new item, do as follows:
* getAlignment().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list {@link String }
*/
@NonNull
public List getAlignment() {
if (alignment == null) {
alignment = new ArrayList<>();
}
return this.alignment;
}
/**
* Ruft den Wert der period-Eigenschaft ab.
*
* @return possible object is {@link PPDPQ }
*/
public PPDPQ getPeriod() {
return period;
}
/**
* Ruft den Wert der phase-Eigenschaft ab.
*
* @return possible object is {@link IVLPPDTS }
*/
public IVLPPDTS getPhase() {
return phase;
}
/**
* Ruft den Wert der institutionSpecified-Eigenschaft ab.
*
* @return possible object is {@link Boolean }
*/
public boolean isInstitutionSpecified() {
if (institutionSpecified == null) {
return false;
} else {
return institutionSpecified;
}
}
/**
* Legt den Wert der institutionSpecified-Eigenschaft fest.
*
* @param value allowed object is {@link Boolean }
*/
public void setInstitutionSpecified(Boolean value) {
this.institutionSpecified = value;
}
/**
* Legt den Wert der period-Eigenschaft fest.
*
* @param value allowed object is {@link PPDPQ }
*/
public void setPeriod(PPDPQ value) {
this.period = value;
}
/**
* Legt den Wert der phase-Eigenschaft fest.
*
* @param value allowed object is {@link IVLPPDTS }
*/
public void setPhase(IVLPPDTS value) {
this.phase = value;
}
}