/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2014, Geomatys * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library 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 * Lesser General Public License for more details. */ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2014.04.20 at 07:08:32 PM CEST // package org.w3._2005.atom; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.*; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.namespace.QName; /** * * The Atom feed construct is defined in section 4.1.1 of the format spec. * * * <p>Java class for feedType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="feedType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <choice maxOccurs="unbounded" minOccurs="3"> * <element name="author" type="{http://www.w3.org/2005/Atom}personType" maxOccurs="unbounded" minOccurs="0"/> * <element name="category" type="{http://www.w3.org/2005/Atom}categoryType" maxOccurs="unbounded" minOccurs="0"/> * <element name="contributor" type="{http://www.w3.org/2005/Atom}personType" maxOccurs="unbounded" minOccurs="0"/> * <element name="generator" type="{http://www.w3.org/2005/Atom}generatorType" minOccurs="0"/> * <element name="icon" type="{http://www.w3.org/2005/Atom}iconType" minOccurs="0"/> * <element name="id" type="{http://www.w3.org/2005/Atom}idType"/> * <element name="link" type="{http://www.w3.org/2005/Atom}linkType" maxOccurs="unbounded" minOccurs="0"/> * <element name="logo" type="{http://www.w3.org/2005/Atom}logoType" minOccurs="0"/> * <element name="rights" type="{http://www.w3.org/2005/Atom}textType" minOccurs="0"/> * <element name="subtitle" type="{http://www.w3.org/2005/Atom}textType" minOccurs="0"/> * <element name="title" type="{http://www.w3.org/2005/Atom}textType"/> * <element name="updated" type="{http://www.w3.org/2005/Atom}dateTimeType"/> * <element name="entry" type="{http://www.w3.org/2005/Atom}entryType" maxOccurs="unbounded" minOccurs="0"/> * <any namespace='##other' maxOccurs="unbounded" minOccurs="0"/> * </choice> * <attGroup ref="{http://www.w3.org/2005/Atom}commonAttributes"/> * <anyAttribute namespace='##other'/> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "feedType", propOrder = { "authorOrCategoryOrContributor" }) @XmlRootElement(name="feed") public class FeedType { @XmlElementRefs({ @XmlElementRef(name = "title", namespace = "http://www.w3.org/2005/Atom", type = JAXBElement.class, required = false), @XmlElementRef(name = "updated", namespace = "http://www.w3.org/2005/Atom", type = JAXBElement.class, required = false), @XmlElementRef(name = "id", namespace = "http://www.w3.org/2005/Atom", type = JAXBElement.class, required = false), @XmlElementRef(name = "logo", namespace = "http://www.w3.org/2005/Atom", type = JAXBElement.class, required = false), @XmlElementRef(name = "where", namespace = "http://www.georss.org/georss", type = JAXBElement.class, required = false), @XmlElementRef(name = "entry", namespace = "http://www.w3.org/2005/Atom", type = JAXBElement.class, required = false), @XmlElementRef(name = "author", namespace = "http://www.w3.org/2005/Atom", type = JAXBElement.class, required = false), @XmlElementRef(name = "contributor", namespace = "http://www.w3.org/2005/Atom", type = JAXBElement.class, required = false), @XmlElementRef(name = "rights", namespace = "http://www.w3.org/2005/Atom", type = JAXBElement.class, required = false), @XmlElementRef(name = "category", namespace = "http://www.w3.org/2005/Atom", type = JAXBElement.class, required = false), @XmlElementRef(name = "generator", namespace = "http://www.w3.org/2005/Atom", type = JAXBElement.class, required = false), @XmlElementRef(name = "link", namespace = "http://www.w3.org/2005/Atom", type = JAXBElement.class, required = false), @XmlElementRef(name = "subtitle", namespace = "http://www.w3.org/2005/Atom", type = JAXBElement.class, required = false), @XmlElementRef(name = "icon", namespace = "http://www.w3.org/2005/Atom", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List<Object> authorOrCategoryOrContributor; @XmlAttribute(name = "base", namespace = "http://www.w3.org/XML/1998/namespace") @XmlSchemaType(name = "anyURI") protected String base; @XmlAttribute(name = "lang", namespace = "http://www.w3.org/XML/1998/namespace") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "language") protected String lang; @XmlAnyAttribute private Map<QName, String> otherAttributes = new HashMap<QName, String>(); /** * Gets the value of the authorOrCategoryOrContributor property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the authorOrCategoryOrContributor property. * * <p> * For example, to add a new item, do as follows: * <pre> * getAuthorOrCategoryOrContributor().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link TextType }{@code >} * {@link JAXBElement }{@code <}{@link DateTimeType }{@code >} * {@link Object } * {@link JAXBElement }{@code <}{@link IdType }{@code >} * {@link JAXBElement }{@code <}{@link LogoType }{@code >} * {@link JAXBElement }{@code <}{@link EntryType }{@code >} * {@link JAXBElement }{@code <}{@link PersonType }{@code >} * {@link JAXBElement }{@code <}{@link PersonType }{@code >} * {@link JAXBElement }{@code <}{@link TextType }{@code >} * {@link JAXBElement }{@code <}{@link CategoryType }{@code >} * {@link JAXBElement }{@code <}{@link GeneratorType }{@code >} * {@link JAXBElement }{@code <}{@link LinkType }{@code >} * {@link JAXBElement }{@code <}{@link TextType }{@code >} * {@link JAXBElement }{@code <}{@link IconType }{@code >} * * */ public List<Object> getAuthorOrCategoryOrContributor() { if (authorOrCategoryOrContributor == null) { authorOrCategoryOrContributor = new ArrayList<Object>(); } return this.authorOrCategoryOrContributor; } /** * Gets the value of the base property. * * @return * possible object is * {@link String } * */ public String getBase() { return base; } /** * Sets the value of the base property. * * @param value * allowed object is * {@link String } * */ public void setBase(String value) { this.base = value; } /** * Gets the value of the lang property. * * @return * possible object is * {@link String } * */ public String getLang() { return lang; } /** * Sets the value of the lang property. * * @param value * allowed object is * {@link String } * */ public void setLang(String value) { this.lang = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * * <p> * the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map<QName, String> getOtherAttributes() { return otherAttributes; } }