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.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for messageDataType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="messageDataType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="AppDocument" type="{http://smev.gosuslugi.ru/rev120315}AppDocumentType" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "messageDataType", propOrder = { "appDocument" }) @XmlSeeAlso({ ResultMessageDataType.class, MessageConnectESIAData.class }) public abstract class MessageDataType { @XmlElement(name = "AppDocument") protected AppDocumentType appDocument; /** * Gets the value of the appDocument property. * * @return * possible object is * {@link AppDocumentType } * */ public AppDocumentType getAppDocument() { return appDocument; } /** * Sets the value of the appDocument property. * * @param value * allowed object is * {@link AppDocumentType } * */ public void setAppDocument(AppDocumentType value) { this.appDocument = value; } }