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.Rechtstatsachen; /** *

Java class for RechtstatsachenErsb complex type. * *

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

 * <complexType name="RechtstatsachenErsb">
 *   <complexContent>
 *     <extension base="{http://statistik.at/namespace/ur/stammdaten/2#}Rechtstatsachen">
 *       <attGroup ref="{http://statistik.at/namespace/ersb/1#}ErsbAttributes"/>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RechtstatsachenErsb") public class RechtstatsachenErsb extends Rechtstatsachen { @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; } }