package unisoft.ws.fnszdl.rq2; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="ВерсФорм" use="required"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <minLength value="1"/> * <maxLength value="5"/> * <enumeration value="4.02"/> * </restriction> * </simpleType> * </attribute> * <attribute name="ИдЗапросФ" use="required"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <minLength value="1"/> * <maxLength value="36"/> * <pattern value="[0-9]+"/> * </restriction> * </simpleType> * </attribute> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442") public class Документ { @XmlAttribute(name = "\u0412\u0435\u0440\u0441\u0424\u043e\u0440\u043c", required = true) protected String версФорм; @XmlAttribute(name = "\u0418\u0434\u0417\u0430\u043f\u0440\u043e\u0441\u0424", required = true) protected String идЗапросФ; /** * Gets the value of the версФорм property. * * @return * possible object is * {@link String } * */ public String getВерсФорм() { return версФорм; } /** * Sets the value of the версФорм property. * * @param value * allowed object is * {@link String } * */ public void setВерсФорм(String value) { this.версФорм = value; } /** * Gets the value of the идЗапросФ property. * * @return * possible object is * {@link String } * */ public String getИдЗапросФ() { return идЗапросФ; } /** * Sets the value of the идЗапросФ property. * * @param value * allowed object is * {@link String } * */ public void setИдЗапросФ(String value) { this.идЗапросФ = value; } }