package org.rasea.agent.demoiselle.internal.proxy; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for webServiceFaultBean complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="webServiceFaultBean"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="errorCode" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="source" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="additionalInfo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "webServiceFaultBean", propOrder = { "errorCode", "source", "additionalInfo" }) public class WebServiceFaultBean { protected int errorCode; protected String source; protected String additionalInfo; /** * 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 source property. * * @return * possible object is * {@link String } * */ public String getSource() { return source; } /** * Sets the value of the source property. * * @param value * allowed object is * {@link String } * */ public void setSource(String value) { this.source = value; } /** * Gets the value of the additionalInfo property. * * @return * possible object is * {@link String } * */ public String getAdditionalInfo() { return additionalInfo; } /** * Sets the value of the additionalInfo property. * * @param value * allowed object is * {@link String } * */ public void setAdditionalInfo(String value) { this.additionalInfo = value; } }