package at.gv.util.xsd.ersb; 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 at.gv.util.xsd.ersb.basicTypes.Bestandsnachweis; /** *

Java class for BestandsnachweisErsb complex type. * *

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

 * <complexType name="BestandsnachweisErsb">
 *   <simpleContent>
 *     <extension base="<http://statistik.at/namespace/ur/stammdaten/2#>Bestandsnachweis">
 *       <attGroup ref="{http://statistik.at/namespace/ersb/1#}ErsbAttributes"/>
 *     </extension>
 *   </simpleContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "BestandsnachweisErsb") public class BestandsnachweisErsb extends Bestandsnachweis { @XmlAttribute(name = "aktion", namespace = "http://statistik.at/namespace/ersb/1#") protected String aktion; /** * Gets the value of the aktion property. * * @return * possible object is * {@link String } * */ public String getAktion() { return aktion; } /** * Sets the value of the aktion property. * * @param value * allowed object is * {@link String } * */ public void setAktion(String value) { this.aktion = value; } }