DefaultIntegrationError.java
- /*
- * GovWay - A customizable API Gateway
- * https://govway.org
- *
- * Copyright (c) 2005-2025 Link.it srl (https://link.it).
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3, as published by
- * the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
- package org.openspcoop2.protocol.manifest;
- import javax.xml.bind.annotation.XmlAccessType;
- import javax.xml.bind.annotation.XmlAccessorType;
- import javax.xml.bind.annotation.XmlAttribute;
- import javax.xml.bind.annotation.XmlElement;
- import javax.xml.bind.annotation.XmlRootElement;
- import javax.xml.bind.annotation.XmlType;
- import org.openspcoop2.protocol.manifest.constants.DefaultIntegrationErrorMessageType;
- import org.openspcoop2.protocol.manifest.constants.IntegrationErrorMessageDetailType;
- import java.io.Serializable;
- /** <p>Java class for DefaultIntegrationError complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * <complexType name="DefaultIntegrationError">
- * <sequence>
- * <element name="errorCode" type="{http://www.openspcoop2.org/protocol/manifest}IntegrationErrorCode" minOccurs="1" maxOccurs="1"/>
- * </sequence>
- * <attribute name="messageType" type="{http://www.openspcoop2.org/protocol/manifest}DefaultIntegrationErrorMessageType" use="required"/>
- * <attribute name="retry" type="{http://www.w3.org/2001/XMLSchema}boolean" use="optional" default="false"/>
- * <attribute name="errorMessage" type="{http://www.openspcoop2.org/protocol/manifest}IntegrationErrorMessageDetailType" use="optional" default="generic"/>
- * </complexType>
- * </pre>
- *
- * @version $Rev$, $Date$
- *
- * @author Poli Andrea (poli@link.it)
- * @author $Author$
- * */
- @XmlAccessorType(XmlAccessType.FIELD)
- @XmlType(name = "DefaultIntegrationError",
- propOrder = {
- "errorCode"
- }
- )
- @XmlRootElement(name = "DefaultIntegrationError")
- public class DefaultIntegrationError extends org.openspcoop2.utils.beans.BaseBean implements Serializable , Cloneable {
- public DefaultIntegrationError() {
- super();
- }
- public IntegrationErrorCode getErrorCode() {
- return this.errorCode;
- }
- public void setErrorCode(IntegrationErrorCode errorCode) {
- this.errorCode = errorCode;
- }
- public void setMessageTypeRawEnumValue(String value) {
- this.messageType = (DefaultIntegrationErrorMessageType) DefaultIntegrationErrorMessageType.toEnumConstantFromString(value);
- }
- public String getMessageTypeRawEnumValue() {
- if(this.messageType == null){
- return null;
- }else{
- return this.messageType.toString();
- }
- }
- public org.openspcoop2.protocol.manifest.constants.DefaultIntegrationErrorMessageType getMessageType() {
- return this.messageType;
- }
- public void setMessageType(org.openspcoop2.protocol.manifest.constants.DefaultIntegrationErrorMessageType messageType) {
- this.messageType = messageType;
- }
- public boolean isRetry() {
- return this.retry;
- }
- public boolean getRetry() {
- return this.retry;
- }
- public void setRetry(boolean retry) {
- this.retry = retry;
- }
- public void setErrorMessageRawEnumValue(String value) {
- this.errorMessage = (IntegrationErrorMessageDetailType) IntegrationErrorMessageDetailType.toEnumConstantFromString(value);
- }
- public String getErrorMessageRawEnumValue() {
- if(this.errorMessage == null){
- return null;
- }else{
- return this.errorMessage.toString();
- }
- }
- public org.openspcoop2.protocol.manifest.constants.IntegrationErrorMessageDetailType getErrorMessage() {
- return this.errorMessage;
- }
- public void setErrorMessage(org.openspcoop2.protocol.manifest.constants.IntegrationErrorMessageDetailType errorMessage) {
- this.errorMessage = errorMessage;
- }
- private static final long serialVersionUID = 1L;
- @XmlElement(name="errorCode",required=true,nillable=false)
- protected IntegrationErrorCode errorCode;
- @javax.xml.bind.annotation.XmlTransient
- protected java.lang.String messageTypeRawEnumValue;
- @XmlAttribute(name="messageType",required=true)
- protected DefaultIntegrationErrorMessageType messageType;
- @javax.xml.bind.annotation.XmlSchemaType(name="boolean")
- @XmlAttribute(name="retry",required=false)
- protected boolean retry = false;
- @javax.xml.bind.annotation.XmlTransient
- protected java.lang.String errorMessageRawEnumValue;
- @XmlAttribute(name="errorMessage",required=false)
- protected IntegrationErrorMessageDetailType errorMessage = (IntegrationErrorMessageDetailType) IntegrationErrorMessageDetailType.toEnumConstantFromString("generic");
- }