/* * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * Copyright (c) 2013, MPL CodeInside http://codeinside.ru */ package ru.roskazna.xsd.errinfo; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ErrInfo", propOrder = { "errorCode", "errorDescription", "errorData" }) public class ErrInfo { @XmlElement(name = "ErrorCode", required = true) protected String errorCode; @XmlElement(name = "ErrorDescription") protected String errorDescription; @XmlElement(name = "ErrorData") protected String errorData; /** * Gets the value of the errorCode property. * * @return * possible object is * {@link String } * */ public String getErrorCode() { return errorCode; } /** * Sets the value of the errorCode property. * * @param value * allowed object is * {@link String } * */ public void setErrorCode(String 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; } /** * Gets the value of the errorData property. * * @return * possible object is * {@link String } * */ public String getErrorData() { return errorData; } /** * Sets the value of the errorData property. * * @param value * allowed object is * {@link String } * */ public void setErrorData(String value) { this.errorData = value; } }