org.xmpp.extensions.Legal 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.xmpp.extensions;
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">
* <sequence>
* <element name="copyright" type="{http://www.xmpp.org/extensions}markup"/>
* <element name="permissions" type="{http://www.xmpp.org/extensions}markup"/>
* <element name="warranty" type="{http://www.xmpp.org/extensions}markup"/>
* <element name="liability" type="{http://www.xmpp.org/extensions}markup"/>
* <element name="conformance" type="{http://www.xmpp.org/extensions}markup"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"copyright",
"permissions",
"warranty",
"liability",
"conformance"
})
@XmlRootElement(name = "legal")
public class Legal {
@XmlElement(required = true)
protected Markup copyright;
@XmlElement(required = true)
protected Markup permissions;
@XmlElement(required = true)
protected Markup warranty;
@XmlElement(required = true)
protected Markup liability;
@XmlElement(required = true)
protected Markup conformance;
/**
* Gets the value of the copyright property.
*
* @return
* possible object is
* {@link Markup }
*
*/
public Markup getCopyright() {
return copyright;
}
/**
* Sets the value of the copyright property.
*
* @param value
* allowed object is
* {@link Markup }
*
*/
public void setCopyright(Markup value) {
this.copyright = value;
}
/**
* Gets the value of the permissions property.
*
* @return
* possible object is
* {@link Markup }
*
*/
public Markup getPermissions() {
return permissions;
}
/**
* Sets the value of the permissions property.
*
* @param value
* allowed object is
* {@link Markup }
*
*/
public void setPermissions(Markup value) {
this.permissions = value;
}
/**
* Gets the value of the warranty property.
*
* @return
* possible object is
* {@link Markup }
*
*/
public Markup getWarranty() {
return warranty;
}
/**
* Sets the value of the warranty property.
*
* @param value
* allowed object is
* {@link Markup }
*
*/
public void setWarranty(Markup value) {
this.warranty = value;
}
/**
* Gets the value of the liability property.
*
* @return
* possible object is
* {@link Markup }
*
*/
public Markup getLiability() {
return liability;
}
/**
* Sets the value of the liability property.
*
* @param value
* allowed object is
* {@link Markup }
*
*/
public void setLiability(Markup value) {
this.liability = value;
}
/**
* Gets the value of the conformance property.
*
* @return
* possible object is
* {@link Markup }
*
*/
public Markup getConformance() {
return conformance;
}
/**
* Sets the value of the conformance property.
*
* @param value
* allowed object is
* {@link Markup }
*
*/
public void setConformance(Markup value) {
this.conformance = value;
}
}