All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jabber.server.Error Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.2-146 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2010.06.09 at 04:26:34 AM BST 
//


package jabber.server;

import javax.annotation.Generated;
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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import ietf.params.xml.ns.xmpp_stanzas.Text;
import uk.org.retep.util.builder.Buildable;
import uk.org.retep.util.builder.CloneBuildable;


/**
 * 

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <group ref="{urn:ietf:params:xml:ns:xmpp-stanzas}stanzaErrorGroup"/>
 *         <element ref="{urn:ietf:params:xml:ns:xmpp-stanzas}text" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="code" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
 *       <attribute name="type" use="required">
 *         <simpleType>
 *           <restriction base="{http://www.w3.org/2001/XMLSchema}NCName">
 *             <enumeration value="auth"/>
 *             <enumeration value="cancel"/>
 *             <enumeration value="continue"/>
 *             <enumeration value="modify"/>
 *             <enumeration value="wait"/>
 *           </restriction>
 *         </simpleType>
 *       </attribute>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "badRequest", "conflict", "featureNotImplemented", "forbidden", "gone", "internalServerError", "itemNotFound", "jidMalformed", "notAcceptable", "notAllowed", "paymentRequired", "recipientUnavailable", "redirect", "registrationRequired", "remoteServerNotFound", "remoteServerTimeout", "resourceConstraint", "serviceUnavailable", "subscriptionRequired", "undefinedCondition", "unexpectedRequest", "text" }) @XmlRootElement(name = "error") @Generated(value = "com.sun.tools.xjc.Driver", date = "2010-06-09T03:53:30+0000", comments = "hudson-jaxb-ri-2.2-146 uk.org.retep.tools:jaxb:10.6") public class Error implements Buildable , CloneBuildable , uk.org.retep.xmpp.message.Error { @XmlElement(name = "bad-request", namespace = "urn:ietf:params:xml:ns:xmpp-stanzas") protected String badRequest; @XmlElement(namespace = "urn:ietf:params:xml:ns:xmpp-stanzas") protected String conflict; @XmlElement(name = "feature-not-implemented", namespace = "urn:ietf:params:xml:ns:xmpp-stanzas") protected String featureNotImplemented; @XmlElement(namespace = "urn:ietf:params:xml:ns:xmpp-stanzas") protected String forbidden; @XmlElement(namespace = "urn:ietf:params:xml:ns:xmpp-stanzas") protected String gone; @XmlElement(name = "internal-server-error", namespace = "urn:ietf:params:xml:ns:xmpp-stanzas") protected String internalServerError; @XmlElement(name = "item-not-found", namespace = "urn:ietf:params:xml:ns:xmpp-stanzas") protected String itemNotFound; @XmlElement(name = "jid-malformed", namespace = "urn:ietf:params:xml:ns:xmpp-stanzas") protected String jidMalformed; @XmlElement(name = "not-acceptable", namespace = "urn:ietf:params:xml:ns:xmpp-stanzas") protected String notAcceptable; @XmlElement(name = "not-allowed", namespace = "urn:ietf:params:xml:ns:xmpp-stanzas") protected String notAllowed; @XmlElement(name = "payment-required", namespace = "urn:ietf:params:xml:ns:xmpp-stanzas") protected String paymentRequired; @XmlElement(name = "recipient-unavailable", namespace = "urn:ietf:params:xml:ns:xmpp-stanzas") protected String recipientUnavailable; @XmlElement(namespace = "urn:ietf:params:xml:ns:xmpp-stanzas") protected String redirect; @XmlElement(name = "registration-required", namespace = "urn:ietf:params:xml:ns:xmpp-stanzas") protected String registrationRequired; @XmlElement(name = "remote-server-not-found", namespace = "urn:ietf:params:xml:ns:xmpp-stanzas") protected String remoteServerNotFound; @XmlElement(name = "remote-server-timeout", namespace = "urn:ietf:params:xml:ns:xmpp-stanzas") protected String remoteServerTimeout; @XmlElement(name = "resource-constraint", namespace = "urn:ietf:params:xml:ns:xmpp-stanzas") protected String resourceConstraint; @XmlElement(name = "service-unavailable", namespace = "urn:ietf:params:xml:ns:xmpp-stanzas") protected String serviceUnavailable; @XmlElement(name = "subscription-required", namespace = "urn:ietf:params:xml:ns:xmpp-stanzas") protected String subscriptionRequired; @XmlElement(name = "undefined-condition", namespace = "urn:ietf:params:xml:ns:xmpp-stanzas") protected String undefinedCondition; @XmlElement(name = "unexpected-request", namespace = "urn:ietf:params:xml:ns:xmpp-stanzas") protected String unexpectedRequest; @XmlElement(namespace = "urn:ietf:params:xml:ns:xmpp-stanzas") protected Text text; @XmlAttribute(name = "code") @XmlSchemaType(name = "unsignedShort") protected Integer code; @XmlAttribute(name = "type", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String type; /** * Gets the value of the badRequest property. * * @return * possible object is * {@link String } * */ public String getBadRequest() { return badRequest; } /** * Sets the value of the badRequest property. * * @param value * allowed object is * {@link String } * */ public void setBadRequest(String value) { this.badRequest = value; } /** * Gets the value of the conflict property. * * @return * possible object is * {@link String } * */ public String getConflict() { return conflict; } /** * Sets the value of the conflict property. * * @param value * allowed object is * {@link String } * */ public void setConflict(String value) { this.conflict = value; } /** * Gets the value of the featureNotImplemented property. * * @return * possible object is * {@link String } * */ public String getFeatureNotImplemented() { return featureNotImplemented; } /** * Sets the value of the featureNotImplemented property. * * @param value * allowed object is * {@link String } * */ public void setFeatureNotImplemented(String value) { this.featureNotImplemented = value; } /** * Gets the value of the forbidden property. * * @return * possible object is * {@link String } * */ public String getForbidden() { return forbidden; } /** * Sets the value of the forbidden property. * * @param value * allowed object is * {@link String } * */ public void setForbidden(String value) { this.forbidden = value; } /** * Gets the value of the gone property. * * @return * possible object is * {@link String } * */ public String getGone() { return gone; } /** * Sets the value of the gone property. * * @param value * allowed object is * {@link String } * */ public void setGone(String value) { this.gone = value; } /** * Gets the value of the internalServerError property. * * @return * possible object is * {@link String } * */ public String getInternalServerError() { return internalServerError; } /** * Sets the value of the internalServerError property. * * @param value * allowed object is * {@link String } * */ public void setInternalServerError(String value) { this.internalServerError = value; } /** * Gets the value of the itemNotFound property. * * @return * possible object is * {@link String } * */ public String getItemNotFound() { return itemNotFound; } /** * Sets the value of the itemNotFound property. * * @param value * allowed object is * {@link String } * */ public void setItemNotFound(String value) { this.itemNotFound = value; } /** * Gets the value of the jidMalformed property. * * @return * possible object is * {@link String } * */ public String getJidMalformed() { return jidMalformed; } /** * Sets the value of the jidMalformed property. * * @param value * allowed object is * {@link String } * */ public void setJidMalformed(String value) { this.jidMalformed = value; } /** * Gets the value of the notAcceptable property. * * @return * possible object is * {@link String } * */ public String getNotAcceptable() { return notAcceptable; } /** * Sets the value of the notAcceptable property. * * @param value * allowed object is * {@link String } * */ public void setNotAcceptable(String value) { this.notAcceptable = value; } /** * Gets the value of the notAllowed property. * * @return * possible object is * {@link String } * */ public String getNotAllowed() { return notAllowed; } /** * Sets the value of the notAllowed property. * * @param value * allowed object is * {@link String } * */ public void setNotAllowed(String value) { this.notAllowed = value; } /** * Gets the value of the paymentRequired property. * * @return * possible object is * {@link String } * */ public String getPaymentRequired() { return paymentRequired; } /** * Sets the value of the paymentRequired property. * * @param value * allowed object is * {@link String } * */ public void setPaymentRequired(String value) { this.paymentRequired = value; } /** * Gets the value of the recipientUnavailable property. * * @return * possible object is * {@link String } * */ public String getRecipientUnavailable() { return recipientUnavailable; } /** * Sets the value of the recipientUnavailable property. * * @param value * allowed object is * {@link String } * */ public void setRecipientUnavailable(String value) { this.recipientUnavailable = value; } /** * Gets the value of the redirect property. * * @return * possible object is * {@link String } * */ public String getRedirect() { return redirect; } /** * Sets the value of the redirect property. * * @param value * allowed object is * {@link String } * */ public void setRedirect(String value) { this.redirect = value; } /** * Gets the value of the registrationRequired property. * * @return * possible object is * {@link String } * */ public String getRegistrationRequired() { return registrationRequired; } /** * Sets the value of the registrationRequired property. * * @param value * allowed object is * {@link String } * */ public void setRegistrationRequired(String value) { this.registrationRequired = value; } /** * Gets the value of the remoteServerNotFound property. * * @return * possible object is * {@link String } * */ public String getRemoteServerNotFound() { return remoteServerNotFound; } /** * Sets the value of the remoteServerNotFound property. * * @param value * allowed object is * {@link String } * */ public void setRemoteServerNotFound(String value) { this.remoteServerNotFound = value; } /** * Gets the value of the remoteServerTimeout property. * * @return * possible object is * {@link String } * */ public String getRemoteServerTimeout() { return remoteServerTimeout; } /** * Sets the value of the remoteServerTimeout property. * * @param value * allowed object is * {@link String } * */ public void setRemoteServerTimeout(String value) { this.remoteServerTimeout = value; } /** * Gets the value of the resourceConstraint property. * * @return * possible object is * {@link String } * */ public String getResourceConstraint() { return resourceConstraint; } /** * Sets the value of the resourceConstraint property. * * @param value * allowed object is * {@link String } * */ public void setResourceConstraint(String value) { this.resourceConstraint = value; } /** * Gets the value of the serviceUnavailable property. * * @return * possible object is * {@link String } * */ public String getServiceUnavailable() { return serviceUnavailable; } /** * Sets the value of the serviceUnavailable property. * * @param value * allowed object is * {@link String } * */ public void setServiceUnavailable(String value) { this.serviceUnavailable = value; } /** * Gets the value of the subscriptionRequired property. * * @return * possible object is * {@link String } * */ public String getSubscriptionRequired() { return subscriptionRequired; } /** * Sets the value of the subscriptionRequired property. * * @param value * allowed object is * {@link String } * */ public void setSubscriptionRequired(String value) { this.subscriptionRequired = value; } /** * Gets the value of the undefinedCondition property. * * @return * possible object is * {@link String } * */ public String getUndefinedCondition() { return undefinedCondition; } /** * Sets the value of the undefinedCondition property. * * @param value * allowed object is * {@link String } * */ public void setUndefinedCondition(String value) { this.undefinedCondition = value; } /** * Gets the value of the unexpectedRequest property. * * @return * possible object is * {@link String } * */ public String getUnexpectedRequest() { return unexpectedRequest; } /** * Sets the value of the unexpectedRequest property. * * @param value * allowed object is * {@link String } * */ public void setUnexpectedRequest(String value) { this.unexpectedRequest = value; } /** * Gets the value of the text property. * * @return * possible object is * {@link Text } * */ public Text getText() { return text; } /** * Sets the value of the text property. * * @param value * allowed object is * {@link Text } * */ public void setText(Text value) { this.text = value; } /** * Gets the value of the code property. * * @return * possible object is * {@link Integer } * */ public Integer getCode() { return code; } /** * Sets the value of the code property. * * @param value * allowed object is * {@link Integer } * */ public void setCode(Integer value) { this.code = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } @Override public final jabber.server.ErrorBuilder builder() { return new jabber.server.ErrorBuilder(); } @Override public final jabber.server.ErrorBuilder cloneBuilder() { return new jabber.server.ErrorBuilder(this); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy