// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 // 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: 2013.11.06 at 01:32:58 PM MSK // package server.mcsv1002.response.message; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for processCanonicalServiceResponseMessageType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="processCanonicalServiceResponseMessageType"> * <complexContent> * <extension base="{http://impl.canonicalRequests.gov.ru}baseMessageType"> * <sequence> * <element name="errorCode" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="errorDescription" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "processCanonicalServiceResponseMessageType", namespace = "http://impl.canonicalRequests.gov.ru", propOrder = { "errorCode", "errorDescription" }) @XmlRootElement public class ProcessCanonicalServiceResponseMessageType extends BaseCustomMessageType { protected int errorCode; protected String errorDescription; /** * Gets the value of the errorCode property. * */ public int getErrorCode() { return errorCode; } /** * Sets the value of the errorCode property. * */ public void setErrorCode(int value) { this.errorCode = value; } /** * Gets the value of the errorDescription property. * * @return * possible object is * {@link String } * */ public String getErrorDescription() { return errorDescription; } /** * Sets the value of the errorDescription property. * * @param value * allowed object is * {@link String } * */ public void setErrorDescription(String value) { this.errorDescription = value; } }