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

org.jabber.protocol.jingle.transport.telepathy.Candidate Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 
// See https://javaee.github.io/jaxb-v2/ 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2020.10.04 at 01:10:24 PM KST 
//


package org.jabber.protocol.jingle.transport.telepathy;

import java.math.BigInteger;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <simpleContent>
 *     <extension base="<http://jabber.org/protocol/jingle/transport/telepathy>empty">
 *       <attribute name="generation" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedByte" />
 *       <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="plane" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" />
 *       <attribute name="pulse" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" />
 *       <attribute name="psi-sig" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="sign">
 *         <simpleType>
 *           <restriction base="{http://www.w3.org/2001/XMLSchema}NCName">
 *             <enumeration value="Aquarius"/>
 *             <enumeration value="Aries"/>
 *             <enumeration value="Cancer"/>
 *             <enumeration value="Capricorn"/>
 *             <enumeration value="Gemini"/>
 *             <enumeration value="Leo"/>
 *             <enumeration value="Libra"/>
 *             <enumeration value="Pisces"/>
 *             <enumeration value="Sagittarius"/>
 *             <enumeration value="Scorpio"/>
 *             <enumeration value="Taurus"/>
 *             <enumeration value="Virgo"/>
 *           </restriction>
 *         </simpleType>
 *       </attribute>
 *       <attribute name="time">
 *         <simpleType>
 *           <restriction base="{http://www.w3.org/2001/XMLSchema}NCName">
 *             <enumeration value="future"/>
 *             <enumeration value="past"/>
 *             <enumeration value="present"/>
 *           </restriction>
 *         </simpleType>
 *       </attribute>
 *     </extension>
 *   </simpleContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "value" }) @XmlRootElement(name = "candidate") public class Candidate { @XmlValue protected String value; @XmlAttribute(name = "generation", required = true) @XmlSchemaType(name = "unsignedByte") protected short generation; @XmlAttribute(name = "name", required = true) protected String name; @XmlAttribute(name = "plane") @XmlSchemaType(name = "positiveInteger") protected BigInteger plane; @XmlAttribute(name = "pulse") @XmlSchemaType(name = "positiveInteger") protected BigInteger pulse; @XmlAttribute(name = "psi-sig") protected String psiSig; @XmlAttribute(name = "sign") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String sign; @XmlAttribute(name = "time") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String time; /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } /** * Gets the value of the generation property. * */ public short getGeneration() { return generation; } /** * Sets the value of the generation property. * */ public void setGeneration(short value) { this.generation = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the plane property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getPlane() { return plane; } /** * Sets the value of the plane property. * * @param value * allowed object is * {@link BigInteger } * */ public void setPlane(BigInteger value) { this.plane = value; } /** * Gets the value of the pulse property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getPulse() { return pulse; } /** * Sets the value of the pulse property. * * @param value * allowed object is * {@link BigInteger } * */ public void setPulse(BigInteger value) { this.pulse = value; } /** * Gets the value of the psiSig property. * * @return * possible object is * {@link String } * */ public String getPsiSig() { return psiSig; } /** * Sets the value of the psiSig property. * * @param value * allowed object is * {@link String } * */ public void setPsiSig(String value) { this.psiSig = value; } /** * Gets the value of the sign property. * * @return * possible object is * {@link String } * */ public String getSign() { return sign; } /** * Sets the value of the sign property. * * @param value * allowed object is * {@link String } * */ public void setSign(String value) { this.sign = value; } /** * Gets the value of the time property. * * @return * possible object is * {@link String } * */ public String getTime() { return time; } /** * Sets the value of the time property. * * @param value * allowed object is * {@link String } * */ public void setTime(String value) { this.time = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy