xmpp.omemo._1.Bundle 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 xmpp.omemo._1;
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;
/**
* 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">
* <all>
* <element ref="{urn:xmpp:omemo:1}spk"/>
* <element ref="{urn:xmpp:omemo:1}spks"/>
* <element ref="{urn:xmpp:omemo:1}ik"/>
* <element ref="{urn:xmpp:omemo:1}prekeys"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
})
@XmlRootElement(name = "bundle")
public class Bundle {
@XmlElement(required = true)
protected Spk spk;
@XmlElement(required = true)
protected byte[] spks;
@XmlElement(required = true)
protected byte[] ik;
@XmlElement(required = true)
protected Prekeys prekeys;
/**
* Gets the value of the spk property.
*
* @return
* possible object is
* {@link Spk }
*
*/
public Spk getSpk() {
return spk;
}
/**
* Sets the value of the spk property.
*
* @param value
* allowed object is
* {@link Spk }
*
*/
public void setSpk(Spk value) {
this.spk = value;
}
/**
* Gets the value of the spks property.
*
* @return
* possible object is
* byte[]
*/
public byte[] getSpks() {
return spks;
}
/**
* Sets the value of the spks property.
*
* @param value
* allowed object is
* byte[]
*/
public void setSpks(byte[] value) {
this.spks = value;
}
/**
* Gets the value of the ik property.
*
* @return
* possible object is
* byte[]
*/
public byte[] getIk() {
return ik;
}
/**
* Sets the value of the ik property.
*
* @param value
* allowed object is
* byte[]
*/
public void setIk(byte[] value) {
this.ik = value;
}
/**
* Gets the value of the prekeys property.
*
* @return
* possible object is
* {@link Prekeys }
*
*/
public Prekeys getPrekeys() {
return prekeys;
}
/**
* Sets the value of the prekeys property.
*
* @param value
* allowed object is
* {@link Prekeys }
*
*/
public void setPrekeys(Prekeys value) {
this.prekeys = value;
}
}