/* * Copyright (C) 2020, University of the Basque Country (UPV/EHU) * * Contact for licensing options: * * This file is part of MCOP MCPTT Client * * This is free software: you can redistribute it and/or modify it under the terms of * the GNU General Public License as published by the Free Software Foundation, either version 3 * of the License, or (at your option) any later version. * * This is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ package org.doubango.ngn.datatype.ms.gms.ns.xcap_diff; import org.simpleframework.xml.Attribute; import org.simpleframework.xml.Element; import org.simpleframework.xml.ElementList; import org.simpleframework.xml.Root; import java.util.List; /** *

Clase Java para documentType complex type. * *

El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase. * *

 * <complexType name="documentType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <choice minOccurs="0">
 *         <element name="body-not-changed" type="{urn:ietf:params:xml:ns:xcap-diff}emptyType"/>
 *         <sequence maxOccurs="unbounded" minOccurs="0">
 *           <choice>
 *             <element name="add">
 *               <complexType>
 *                 <complexContent>
 *                   <extension base="{urn:ietf:params:xml:ns:xcap-diff}add">
 *                     <anyAttribute processContents='lax'/>
 *                   </extension>
 *                 </complexContent>
 *               </complexType>
 *             </element>
 *             <element name="remove">
 *               <complexType>
 *                 <complexContent>
 *                   <extension base="{urn:ietf:params:xml:ns:xcap-diff}remove">
 *                     <anyAttribute processContents='lax'/>
 *                   </extension>
 *                 </complexContent>
 *               </complexType>
 *             </element>
 *             <element name="replace">
 *               <complexType>
 *                 <complexContent>
 *                   <extension base="{urn:ietf:params:xml:ns:xcap-diff}replace">
 *                     <anyAttribute processContents='lax'/>
 *                   </extension>
 *                 </complexContent>
 *               </complexType>
 *             </element>
 *             <any processContents='lax' namespace='##other'/>
 *           </choice>
 *         </sequence>
 *       </choice>
 *       <attribute name="sel" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
 *       <attribute name="new-etag" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="previous-etag" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <anyAttribute processContents='lax'/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @Root(strict=false, name = "documentType") public class DocumentType { @Element(required = false, name = "body-not-changed") protected EmptyType bodyNotChanged; @ElementList(required=false,inline=true,entry = "remove") protected java.util.List remove; @ElementList(required=false,inline=true,entry = "replace") protected java.util.List replace; @ElementList(required=false,inline=true,entry = "add") protected java.util.List add; @Attribute(required = false , name = "sel") protected String sel; @Attribute(required = false , name = "new-etag") protected String newEtag; @Attribute(required = false , name = "previous-etag") protected String previousEtag; /** * Obtiene el valor de la propiedad bodyNotChanged. * * @return * possible object is * {@link EmptyType } * */ public EmptyType getBodyNotChanged() { return bodyNotChanged; } /** * Define el valor de la propiedad bodyNotChanged. * * @param value * allowed object is * {@link EmptyType } * */ public void setBodyNotChanged(EmptyType value) { this.bodyNotChanged = value; } /** * Obtiene el valor de la propiedad sel. * * @return * possible object is * {@link String } * */ public String getSel() { return sel; } /** * Define el valor de la propiedad sel. * * @param value * allowed object is * {@link String } * */ public void setSel(String value) { this.sel = value; } /** * Obtiene el valor de la propiedad newEtag. * * @return * possible object is * {@link String } * */ public String getNewEtag() { return newEtag; } /** * Define el valor de la propiedad newEtag. * * @param value * allowed object is * {@link String } * */ public void setNewEtag(String value) { this.newEtag = value; } /** * Obtiene el valor de la propiedad previousEtag. * * @return * possible object is * {@link String } * */ public String getPreviousEtag() { return previousEtag; } /** * Define el valor de la propiedad previousEtag. * * @param value * allowed object is * {@link String } * */ public void setPreviousEtag(String value) { this.previousEtag = value; } public List getRemove() { return remove; } public void setRemove(List remove) { this.remove = remove; } public List getReplace() { return replace; } public void setReplace(List replace) { this.replace = replace; } public List getAdd() { return add; } public void setAdd(List add) { this.add = add; } }