package at.gv.util.xsd.ur_V2.search; 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 javax.xml.bind.annotation.XmlValue; /** *

Java class for OenaceType complex type. * *

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

 * <complexType name="OenaceType">
 *   <simpleContent>
 *     <extension base="<http://statistik.at/namespace/ur/simpleTypes/2#>OenaceCodeTyp">
 *       <attribute name="jahr" use="required" type="{http://statistik.at/namespace/ur/simpleTypes/2#}OenaceJahrTyp" />
 *     </extension>
 *   </simpleContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OenaceType", propOrder = { "value" }) public class OenaceType { @XmlValue protected String value; @XmlAttribute(name = "jahr", required = true) protected int jahr; /** * * ÖNACE - Branchenkennzahl * * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } /** * Gets the value of the jahr property. * */ public int getJahr() { return jahr; } /** * Sets the value of the jahr property. * */ public void setJahr(int value) { this.jahr = value; } }