riv.se_apotekensservice.folk._1.VardenhetResponse Maven / Gradle / Ivy
package riv.se_apotekensservice.folk._1;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Java class for VardenhetResponse complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VardenhetResponse">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="anstallda" type="{urn:riv:se.apotekensservice:folk:1}AnstalldResponse" maxOccurs="unbounded" minOccurs="0"/>
* <element name="arbetstalleId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="arbetstalleNamn" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="avregApotek" type="{urn:riv:se.apotekensservice:folk:1}ApotekInfoResponse" minOccurs="0"/>
* <element name="avregDatum" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="avregistrerad" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="enhetId" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="gatuadress" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="hsaId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="kontaktperson" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="legPersNr" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="namn" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="orgId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="postnummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="postort" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="regApotek" type="{urn:riv:se.apotekensservice:folk:1}ApotekInfoResponse" minOccurs="0"/>
* <element name="regDatum" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="telefonnummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="updApotek" type="{urn:riv:se.apotekensservice:folk:1}ApotekInfoResponse" minOccurs="0"/>
* <element name="updDatum" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="vaEfternamn" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="vaFornamn" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="vaPersNr" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="vardenhetNamn" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VardenhetResponse", propOrder = {
"anstallda",
"arbetstalleId",
"arbetstalleNamn",
"avregApotek",
"avregDatum",
"avregistrerad",
"enhetId",
"gatuadress",
"hsaId",
"kontaktperson",
"legPersNr",
"namn",
"orgId",
"postnummer",
"postort",
"regApotek",
"regDatum",
"telefonnummer",
"updApotek",
"updDatum",
"vaEfternamn",
"vaFornamn",
"vaPersNr",
"vardenhetNamn"
})
public class VardenhetResponse {
protected List anstallda;
protected String arbetstalleId;
protected String arbetstalleNamn;
protected ApotekInfoResponse avregApotek;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar avregDatum;
protected Boolean avregistrerad;
protected long enhetId;
protected String gatuadress;
protected String hsaId;
protected String kontaktperson;
protected String legPersNr;
protected String namn;
protected String orgId;
protected String postnummer;
protected String postort;
protected ApotekInfoResponse regApotek;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar regDatum;
protected String telefonnummer;
protected ApotekInfoResponse updApotek;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar updDatum;
protected String vaEfternamn;
protected String vaFornamn;
protected String vaPersNr;
protected String vardenhetNamn;
/**
* Gets the value of the anstallda 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 anstallda property.
*
*
* For example, to add a new item, do as follows:
*
* getAnstallda().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link AnstalldResponse }
*
*
*/
public List getAnstallda() {
if (anstallda == null) {
anstallda = new ArrayList();
}
return this.anstallda;
}
/**
* Gets the value of the arbetstalleId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getArbetstalleId() {
return arbetstalleId;
}
/**
* Sets the value of the arbetstalleId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setArbetstalleId(String value) {
this.arbetstalleId = value;
}
/**
* Gets the value of the arbetstalleNamn property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getArbetstalleNamn() {
return arbetstalleNamn;
}
/**
* Sets the value of the arbetstalleNamn property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setArbetstalleNamn(String value) {
this.arbetstalleNamn = value;
}
/**
* Gets the value of the avregApotek property.
*
* @return
* possible object is
* {@link ApotekInfoResponse }
*
*/
public ApotekInfoResponse getAvregApotek() {
return avregApotek;
}
/**
* Sets the value of the avregApotek property.
*
* @param value
* allowed object is
* {@link ApotekInfoResponse }
*
*/
public void setAvregApotek(ApotekInfoResponse value) {
this.avregApotek = value;
}
/**
* Gets the value of the avregDatum property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getAvregDatum() {
return avregDatum;
}
/**
* Sets the value of the avregDatum property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setAvregDatum(XMLGregorianCalendar value) {
this.avregDatum = value;
}
/**
* Gets the value of the avregistrerad property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isAvregistrerad() {
return avregistrerad;
}
/**
* Sets the value of the avregistrerad property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setAvregistrerad(Boolean value) {
this.avregistrerad = value;
}
/**
* Gets the value of the enhetId property.
*
*/
public long getEnhetId() {
return enhetId;
}
/**
* Sets the value of the enhetId property.
*
*/
public void setEnhetId(long value) {
this.enhetId = value;
}
/**
* Gets the value of the gatuadress property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getGatuadress() {
return gatuadress;
}
/**
* Sets the value of the gatuadress property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setGatuadress(String value) {
this.gatuadress = value;
}
/**
* Gets the value of the hsaId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getHsaId() {
return hsaId;
}
/**
* Sets the value of the hsaId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setHsaId(String value) {
this.hsaId = value;
}
/**
* Gets the value of the kontaktperson property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getKontaktperson() {
return kontaktperson;
}
/**
* Sets the value of the kontaktperson property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setKontaktperson(String value) {
this.kontaktperson = value;
}
/**
* Gets the value of the legPersNr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLegPersNr() {
return legPersNr;
}
/**
* Sets the value of the legPersNr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLegPersNr(String value) {
this.legPersNr = value;
}
/**
* Gets the value of the namn property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNamn() {
return namn;
}
/**
* Sets the value of the namn property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNamn(String value) {
this.namn = value;
}
/**
* Gets the value of the orgId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOrgId() {
return orgId;
}
/**
* Sets the value of the orgId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOrgId(String value) {
this.orgId = value;
}
/**
* Gets the value of the postnummer property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPostnummer() {
return postnummer;
}
/**
* Sets the value of the postnummer property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPostnummer(String value) {
this.postnummer = value;
}
/**
* Gets the value of the postort property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPostort() {
return postort;
}
/**
* Sets the value of the postort property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPostort(String value) {
this.postort = value;
}
/**
* Gets the value of the regApotek property.
*
* @return
* possible object is
* {@link ApotekInfoResponse }
*
*/
public ApotekInfoResponse getRegApotek() {
return regApotek;
}
/**
* Sets the value of the regApotek property.
*
* @param value
* allowed object is
* {@link ApotekInfoResponse }
*
*/
public void setRegApotek(ApotekInfoResponse value) {
this.regApotek = value;
}
/**
* Gets the value of the regDatum property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getRegDatum() {
return regDatum;
}
/**
* Sets the value of the regDatum property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setRegDatum(XMLGregorianCalendar value) {
this.regDatum = value;
}
/**
* Gets the value of the telefonnummer property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTelefonnummer() {
return telefonnummer;
}
/**
* Sets the value of the telefonnummer property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTelefonnummer(String value) {
this.telefonnummer = value;
}
/**
* Gets the value of the updApotek property.
*
* @return
* possible object is
* {@link ApotekInfoResponse }
*
*/
public ApotekInfoResponse getUpdApotek() {
return updApotek;
}
/**
* Sets the value of the updApotek property.
*
* @param value
* allowed object is
* {@link ApotekInfoResponse }
*
*/
public void setUpdApotek(ApotekInfoResponse value) {
this.updApotek = value;
}
/**
* Gets the value of the updDatum property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getUpdDatum() {
return updDatum;
}
/**
* Sets the value of the updDatum property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setUpdDatum(XMLGregorianCalendar value) {
this.updDatum = value;
}
/**
* Gets the value of the vaEfternamn property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVaEfternamn() {
return vaEfternamn;
}
/**
* Sets the value of the vaEfternamn property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVaEfternamn(String value) {
this.vaEfternamn = value;
}
/**
* Gets the value of the vaFornamn property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVaFornamn() {
return vaFornamn;
}
/**
* Sets the value of the vaFornamn property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVaFornamn(String value) {
this.vaFornamn = value;
}
/**
* Gets the value of the vaPersNr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVaPersNr() {
return vaPersNr;
}
/**
* Sets the value of the vaPersNr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVaPersNr(String value) {
this.vaPersNr = value;
}
/**
* Gets the value of the vardenhetNamn property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVardenhetNamn() {
return vardenhetNamn;
}
/**
* Sets the value of the vardenhetNamn property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVardenhetNamn(String value) {
this.vardenhetNamn = value;
}
}