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.UntName; /** *
Java class for UntNameErsb complex type. * *
The following schema fragment specifies the expected content contained within this class. * *
* <complexType name="UntNameErsb">
* <complexContent>
* <extension base="{http://statistik.at/namespace/ur/stammdaten/2#}UntName">
* <attGroup ref="{http://statistik.at/namespace/ersb/1#}ErsbAttributes"/>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "UntNameErsb")
public class UntNameErsb
extends UntName
{
@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;
}
}