/* * * 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.resource_lists; 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 listType complex type. * *

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

 * <complexType name="listType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="display-name" type="{urn:ietf:params:xml:ns:resource-lists}display-nameType" minOccurs="0"/>
 *         <sequence maxOccurs="unbounded" minOccurs="0">
 *           <choice>
 *             <element name="list">
 *               <complexType>
 *                 <complexContent>
 *                   <extension base="{urn:ietf:params:xml:ns:resource-lists}listType">
 *                     <anyAttribute processContents='lax' namespace='##other'/>
 *                   </extension>
 *                 </complexContent>
 *               </complexType>
 *             </element>
 *             <element name="external" type="{urn:ietf:params:xml:ns:resource-lists}externalType"/>
 *             <element name="entry" type="{urn:ietf:params:xml:ns:resource-lists}entryType"/>
 *             <element name="entry-ref" type="{urn:ietf:params:xml:ns:resource-lists}entry-refType"/>
 *           </choice>
 *         </sequence>
 *         <any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <anyAttribute processContents='lax' namespace='##other'/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @Root(strict=false, name = "listType") public class ListType { @Element(required = false, name = "display-name") protected DisplayNameType displayName; @ElementList(required=false,inline=true,entry = "list") protected java.util.List list; @ElementList(required=false,inline=true,entry = "external") protected java.util.List external; @ElementList(required=false,inline=true,entry = "entry") protected java.util.List entry; @ElementList(required=false,inline=true,entry = "entry-ref") protected java.util.List entryRef; @Attribute(required = false , name = "name") protected String name; /** * Obtiene el valor de la propiedad displayName. * * @return * possible object is * {@link DisplayNameType } * */ public DisplayNameType getDisplayName() { return displayName; } /** * Define el valor de la propiedad displayName. * * @param value * allowed object is * {@link DisplayNameType } * */ public void setDisplayName(DisplayNameType value) { this.displayName = value; } /** * Obtiene el valor de la propiedad name. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Define el valor de la propiedad name. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } public List getList() { return list; } public void setList(List list) { this.list = list; } public List getExternal() { return external; } public void setExternal(List external) { this.external = external; } public List getEntry() { return entry; } public void setEntry(List entry) { this.entry = entry; } public List getEntryRef() { return entryRef; } public void setEntryRef(List entryRef) { this.entryRef = entryRef; } }