All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.wink.common.model.app.AppWorkspace Maven / Gradle / Ivy

The newest version!
/*******************************************************************************
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *  
 *   http://www.apache.org/licenses/LICENSE-2.0
 *  
 *  Unless required by applicable law or agreed to in writing,
 *  software distributed under the License is distributed on an
 *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 *  KIND, either express or implied.  See the License for the
 *  specific language governing permissions and limitations
 *  under the License.
 *  
 *******************************************************************************/
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.1-b02-fcs 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2008.09.15 at 12:57:27 PM IDT 
//

package org.apache.wink.common.model.app;

import java.util.ArrayList;
import java.util.List;

import javax.xml.bind.annotation.XmlAccessOrder;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorOrder;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAnyElement;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;

import org.apache.wink.common.model.atom.AtomCommonAttributes;
import org.apache.wink.common.model.atom.AtomText;
import org.w3c.dom.Element;

/**
 * The "app:workspace" Element Per RFC5023
 * 
 * 
 * The "app:workspace" Element
 * Workspaces are server-defined groups of Collections.  
 * The "app:workspace" element contains zero or more app:collection elements
 * describing the Collections of Resources available for editing.
 * appWorkspace =
 *    element app:workspace {
 *       appCommonAttributes,
 *       ( atomTitle
 *         & appCollection*
 *         & extensionSansTitleElement* )
 *    }
 * atomTitle = element atom:title { atomTextConstruct }
 * 
 * o The "atom:title" Element
 * 
 *   The app:workspace element MUST contain one "atom:title" element (as
 *   defined in [RFC4287]), giving a human-readable title for the
 *   Workspace.
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlAccessorOrder(XmlAccessOrder.UNDEFINED) @XmlType(name = "appWorkspace", propOrder = {"title", "collection", "any"}) public class AppWorkspace extends AtomCommonAttributes { @XmlElement(namespace = "http://www.w3.org/2005/Atom", required = true) protected AtomText title; protected List collection; @XmlAnyElement protected List any; /** * Gets the value of title. */ public AtomText getTitle() { return title; } /** * Sets the value of title. */ public void setTitle(AtomText value) { this.title = value; } /** * Gets the collections. *

* 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 * set method for the collection. *

* For example, to add a new item, do as follows: * *

     * getCollection().add(newItem);
     * 
*

* Objects of the following type(s) are allowed in the list * {@link AppCollection } */ public List getCollection() { if (collection == null) { collection = new ArrayList(); } return this.collection; } public AppCollection getCollection(String name) { if (name == null) { return null; } List collections = getCollection(); for (AppCollection collection : collections) { if (name.equals(collection.getTitle().getValue())) { return collection; } } return null; } /** * Gets extension elements. *

* 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 * set method for the any. *

* For example, to add a new item, do as follows: * *

     * getAny().add(newItem);
     * 
*

* Objects of the following type(s) are allowed in the list {@link Element } */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy