// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2015.03.13 at 12:17:21 PM MEZ // package ch.fd.invoice400.response; import java.math.BigInteger; 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; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * <p> * Java class for dataValidatorType complex type. * * <p> * The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="dataValidatorType"> * <simpleContent> * <extension base="<http://www.xmlData.ch/xmlInvoice/XSD>stringType1_350"> * <attribute name="focus" use="required"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN"> * <enumeration value="tarmed"/> * <enumeration value="cantonal"/> * <enumeration value="lab"/> * <enumeration value="unclassified"/> * <enumeration value="drug"/> * <enumeration value="migel"/> * <enumeration value="physio"/> * <enumeration value="other"/> * </restriction> * </simpleType> * </attribute> * <attribute name="id" default="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}integer"> * <minInclusive value="0"/> * </restriction> * </simpleType> * </attribute> * <attribute name="version_db" use="required" type="{http://www.xmlData.ch/xmlInvoice/XSD}versionType" /> * <attribute name="version_software" use="required" type="{http://www.xmlData.ch/xmlInvoice/XSD}versionType" /> * </extension> * </simpleContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "dataValidatorType", propOrder = { "value" }) public class DataValidatorType { @XmlValue protected String value; @XmlAttribute(required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String focus; @XmlAttribute protected BigInteger id; @XmlAttribute(name = "version_db", required = true) protected BigInteger versionDb; @XmlAttribute(name = "version_software", required = true) protected BigInteger versionSoftware; /** * Gets the value of the value property. * * @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 focus property. * * @return possible object is {@link String } * */ public String getFocus(){ return focus; } /** * Sets the value of the focus property. * * @param value * allowed object is {@link String } * */ public void setFocus(String value){ this.focus = value; } /** * Gets the value of the id property. * * @return possible object is {@link BigInteger } * */ public BigInteger getId(){ if (id == null) { return new BigInteger("0"); } else { return id; } } /** * Sets the value of the id property. * * @param value * allowed object is {@link BigInteger } * */ public void setId(BigInteger value){ this.id = value; } /** * Gets the value of the versionDb property. * * @return possible object is {@link BigInteger } * */ public BigInteger getVersionDb(){ return versionDb; } /** * Sets the value of the versionDb property. * * @param value * allowed object is {@link BigInteger } * */ public void setVersionDb(BigInteger value){ this.versionDb = value; } /** * Gets the value of the versionSoftware property. * * @return possible object is {@link BigInteger } * */ public BigInteger getVersionSoftware(){ return versionSoftware; } /** * Sets the value of the versionSoftware property. * * @param value * allowed object is {@link BigInteger } * */ public void setVersionSoftware(BigInteger value){ this.versionSoftware = value; } }