package ru.codeinside.esia; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for appData complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="appData"> * <complexContent> * <extension base="{http://smev.gosuslugi.ru/rev120315}abstractAppData"> * <sequence> * <element ref="{http://oep-penza.ru/com/oep}result"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "appData", propOrder = { "result" }) public class AppData extends AbstractAppData { @XmlElement(namespace = "http://oep-penza.ru/com/oep", required = true) protected Result result; /** * Gets the value of the result property. * * @return * possible object is * {@link Result } * */ public Result getResult() { return result; } /** * Sets the value of the result property. * * @param value * allowed object is * {@link Result } * */ public void setResult(Result value) { this.result = value; } }