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

org.jabber.etherx.streams.Error Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.2-b01-fcs 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2007.03.23 at 05:33:02 PM UTC 
//


package org.jabber.etherx.streams;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import ietf.params.xml.ns.xmpp_streams.Text;


/**
 * 

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-streams}streamErrorGroup"/>
 *         <element ref="{urn:ietf:params:xml:ns:xmpp-streams}text" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "badFormat", "badNamespacePrefix", "conflict", "connectionTimeout", "hostGone", "hostUnknown", "improperAddressing", "internalServerError", "invalidFrom", "invalidId", "invalidNamespace", "invalidXml", "notAuthorized", "policyViolation", "remoteConnectionFailed", "resourceConstraint", "restrictedXml", "seeOtherHost", "systemShutdown", "undefinedCondition", "unsupportedEncoding", "unsupportedStanzaType", "unsupportedVersion", "xmlNotWellFormed", "text" }) @XmlRootElement(name = "error") public class Error { @XmlElement(name = "bad-format", namespace = "urn:ietf:params:xml:ns:xmpp-streams") protected String badFormat; @XmlElement(name = "bad-namespace-prefix", namespace = "urn:ietf:params:xml:ns:xmpp-streams") protected String badNamespacePrefix; @XmlElement(namespace = "urn:ietf:params:xml:ns:xmpp-streams") protected String conflict; @XmlElement(name = "connection-timeout", namespace = "urn:ietf:params:xml:ns:xmpp-streams") protected String connectionTimeout; @XmlElement(name = "host-gone", namespace = "urn:ietf:params:xml:ns:xmpp-streams") protected String hostGone; @XmlElement(name = "host-unknown", namespace = "urn:ietf:params:xml:ns:xmpp-streams") protected String hostUnknown; @XmlElement(name = "improper-addressing", namespace = "urn:ietf:params:xml:ns:xmpp-streams") protected String improperAddressing; @XmlElement(name = "internal-server-error", namespace = "urn:ietf:params:xml:ns:xmpp-streams") protected String internalServerError; @XmlElement(name = "invalid-from", namespace = "urn:ietf:params:xml:ns:xmpp-streams") protected String invalidFrom; @XmlElement(name = "invalid-id", namespace = "urn:ietf:params:xml:ns:xmpp-streams") protected String invalidId; @XmlElement(name = "invalid-namespace", namespace = "urn:ietf:params:xml:ns:xmpp-streams") protected String invalidNamespace; @XmlElement(name = "invalid-xml", namespace = "urn:ietf:params:xml:ns:xmpp-streams") protected String invalidXml; @XmlElement(name = "not-authorized", namespace = "urn:ietf:params:xml:ns:xmpp-streams") protected String notAuthorized; @XmlElement(name = "policy-violation", namespace = "urn:ietf:params:xml:ns:xmpp-streams") protected String policyViolation; @XmlElement(name = "remote-connection-failed", namespace = "urn:ietf:params:xml:ns:xmpp-streams") protected String remoteConnectionFailed; @XmlElement(name = "resource-constraint", namespace = "urn:ietf:params:xml:ns:xmpp-streams") protected String resourceConstraint; @XmlElement(name = "restricted-xml", namespace = "urn:ietf:params:xml:ns:xmpp-streams") protected String restrictedXml; @XmlElement(name = "see-other-host", namespace = "urn:ietf:params:xml:ns:xmpp-streams") protected String seeOtherHost; @XmlElement(name = "system-shutdown", namespace = "urn:ietf:params:xml:ns:xmpp-streams") protected String systemShutdown; @XmlElement(name = "undefined-condition", namespace = "urn:ietf:params:xml:ns:xmpp-streams") protected String undefinedCondition; @XmlElement(name = "unsupported-encoding", namespace = "urn:ietf:params:xml:ns:xmpp-streams") protected String unsupportedEncoding; @XmlElement(name = "unsupported-stanza-type", namespace = "urn:ietf:params:xml:ns:xmpp-streams") protected String unsupportedStanzaType; @XmlElement(name = "unsupported-version", namespace = "urn:ietf:params:xml:ns:xmpp-streams") protected String unsupportedVersion; @XmlElement(name = "xml-not-well-formed", namespace = "urn:ietf:params:xml:ns:xmpp-streams") protected String xmlNotWellFormed; @XmlElement(namespace = "urn:ietf:params:xml:ns:xmpp-streams") protected Text text; /** * Gets the value of the badFormat property. * * @return * possible object is * {@link String } * */ public String getBadFormat() { return badFormat; } /** * Sets the value of the badFormat property. * * @param value * allowed object is * {@link String } * */ public void setBadFormat(String value) { this.badFormat = value; } /** * Gets the value of the badNamespacePrefix property. * * @return * possible object is * {@link String } * */ public String getBadNamespacePrefix() { return badNamespacePrefix; } /** * Sets the value of the badNamespacePrefix property. * * @param value * allowed object is * {@link String } * */ public void setBadNamespacePrefix(String value) { this.badNamespacePrefix = 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 connectionTimeout property. * * @return * possible object is * {@link String } * */ public String getConnectionTimeout() { return connectionTimeout; } /** * Sets the value of the connectionTimeout property. * * @param value * allowed object is * {@link String } * */ public void setConnectionTimeout(String value) { this.connectionTimeout = value; } /** * Gets the value of the hostGone property. * * @return * possible object is * {@link String } * */ public String getHostGone() { return hostGone; } /** * Sets the value of the hostGone property. * * @param value * allowed object is * {@link String } * */ public void setHostGone(String value) { this.hostGone = value; } /** * Gets the value of the hostUnknown property. * * @return * possible object is * {@link String } * */ public String getHostUnknown() { return hostUnknown; } /** * Sets the value of the hostUnknown property. * * @param value * allowed object is * {@link String } * */ public void setHostUnknown(String value) { this.hostUnknown = value; } /** * Gets the value of the improperAddressing property. * * @return * possible object is * {@link String } * */ public String getImproperAddressing() { return improperAddressing; } /** * Sets the value of the improperAddressing property. * * @param value * allowed object is * {@link String } * */ public void setImproperAddressing(String value) { this.improperAddressing = 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 invalidFrom property. * * @return * possible object is * {@link String } * */ public String getInvalidFrom() { return invalidFrom; } /** * Sets the value of the invalidFrom property. * * @param value * allowed object is * {@link String } * */ public void setInvalidFrom(String value) { this.invalidFrom = value; } /** * Gets the value of the invalidId property. * * @return * possible object is * {@link String } * */ public String getInvalidId() { return invalidId; } /** * Sets the value of the invalidId property. * * @param value * allowed object is * {@link String } * */ public void setInvalidId(String value) { this.invalidId = value; } /** * Gets the value of the invalidNamespace property. * * @return * possible object is * {@link String } * */ public String getInvalidNamespace() { return invalidNamespace; } /** * Sets the value of the invalidNamespace property. * * @param value * allowed object is * {@link String } * */ public void setInvalidNamespace(String value) { this.invalidNamespace = value; } /** * Gets the value of the invalidXml property. * * @return * possible object is * {@link String } * */ public String getInvalidXml() { return invalidXml; } /** * Sets the value of the invalidXml property. * * @param value * allowed object is * {@link String } * */ public void setInvalidXml(String value) { this.invalidXml = value; } /** * Gets the value of the notAuthorized property. * * @return * possible object is * {@link String } * */ public String getNotAuthorized() { return notAuthorized; } /** * Sets the value of the notAuthorized property. * * @param value * allowed object is * {@link String } * */ public void setNotAuthorized(String value) { this.notAuthorized = value; } /** * Gets the value of the policyViolation property. * * @return * possible object is * {@link String } * */ public String getPolicyViolation() { return policyViolation; } /** * Sets the value of the policyViolation property. * * @param value * allowed object is * {@link String } * */ public void setPolicyViolation(String value) { this.policyViolation = value; } /** * Gets the value of the remoteConnectionFailed property. * * @return * possible object is * {@link String } * */ public String getRemoteConnectionFailed() { return remoteConnectionFailed; } /** * Sets the value of the remoteConnectionFailed property. * * @param value * allowed object is * {@link String } * */ public void setRemoteConnectionFailed(String value) { this.remoteConnectionFailed = 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 restrictedXml property. * * @return * possible object is * {@link String } * */ public String getRestrictedXml() { return restrictedXml; } /** * Sets the value of the restrictedXml property. * * @param value * allowed object is * {@link String } * */ public void setRestrictedXml(String value) { this.restrictedXml = value; } /** * Gets the value of the seeOtherHost property. * * @return * possible object is * {@link String } * */ public String getSeeOtherHost() { return seeOtherHost; } /** * Sets the value of the seeOtherHost property. * * @param value * allowed object is * {@link String } * */ public void setSeeOtherHost(String value) { this.seeOtherHost = value; } /** * Gets the value of the systemShutdown property. * * @return * possible object is * {@link String } * */ public String getSystemShutdown() { return systemShutdown; } /** * Sets the value of the systemShutdown property. * * @param value * allowed object is * {@link String } * */ public void setSystemShutdown(String value) { this.systemShutdown = 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 unsupportedEncoding property. * * @return * possible object is * {@link String } * */ public String getUnsupportedEncoding() { return unsupportedEncoding; } /** * Sets the value of the unsupportedEncoding property. * * @param value * allowed object is * {@link String } * */ public void setUnsupportedEncoding(String value) { this.unsupportedEncoding = value; } /** * Gets the value of the unsupportedStanzaType property. * * @return * possible object is * {@link String } * */ public String getUnsupportedStanzaType() { return unsupportedStanzaType; } /** * Sets the value of the unsupportedStanzaType property. * * @param value * allowed object is * {@link String } * */ public void setUnsupportedStanzaType(String value) { this.unsupportedStanzaType = value; } /** * Gets the value of the unsupportedVersion property. * * @return * possible object is * {@link String } * */ public String getUnsupportedVersion() { return unsupportedVersion; } /** * Sets the value of the unsupportedVersion property. * * @param value * allowed object is * {@link String } * */ public void setUnsupportedVersion(String value) { this.unsupportedVersion = value; } /** * Gets the value of the xmlNotWellFormed property. * * @return * possible object is * {@link String } * */ public String getXmlNotWellFormed() { return xmlNotWellFormed; } /** * Sets the value of the xmlNotWellFormed property. * * @param value * allowed object is * {@link String } * */ public void setXmlNotWellFormed(String value) { this.xmlNotWellFormed = 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; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy