package ch.pharmedsolutions.www.apothekenservice; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java-Klasse für anonymous complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="apotheken" type="{https://www.pharmedsolutions.ch/ApothekenService}ArrayOfApotheken"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "apotheken" }) @XmlRootElement(name = "Apotheken") public class Apotheken { @XmlElement(required = true) protected ArrayOfApotheken apotheken; /** * Ruft den Wert der apotheken-Eigenschaft ab. * * @return * possible object is * {@link ArrayOfApotheken } * */ public ArrayOfApotheken getApotheken() { return apotheken; } /** * Legt den Wert der apotheken-Eigenschaft fest. * * @param value * allowed object is * {@link ArrayOfApotheken } * */ public void setApotheken(ArrayOfApotheken value) { this.apotheken = value; } }