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

com.ibm.rqm.xml.bind.processinfo.StateGroupResource Maven / Gradle / Ivy

There is a newer version: 1.6.0-BETA2
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2015.07.13 at 12:00:05 PM BRT 
//


package com.ibm.rqm.xml.bind.processinfo;

import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlElementRefs;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;


/**
 * [READ-ONLY] Group definition of workflow states.  States are members of state groups.
 * 
 * 

Java class for StateGroup element declaration. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <element name="StateGroup">
 *   <complexType>
 *     <complexContent>
 *       <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *         <choice maxOccurs="4">
 *           <element ref="{http://purl.org/dc/elements/1.1/}identifier"/>
 *           <element ref="{http://purl.org/dc/elements/1.1/}title"/>
 *           <element ref="{http://jazz.net/xmlns/prod/jazz/rqm/process/1.0/}category"/>
 *           <element ref="{http://jazz.net/xmlns/prod/jazz/rqm/process/1.0/}projectArea"/>
 *         </choice>
 *         <attribute ref="{http://www.w3.org/1999/02/22-rdf-syntax-ns#}about use="required""/>
 *       </restriction>
 *     </complexContent>
 *   </complexType>
 * </element>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "identifierOrTitleOrCategory" }) @XmlRootElement(name = "StateGroup") public class StateGroupResource { @XmlElementRefs({ @XmlElementRef(name = "category", namespace = "http://jazz.net/xmlns/prod/jazz/rqm/process/1.0/", type = Category.class), @XmlElementRef(name = "identifier", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class), @XmlElementRef(name = "projectArea", namespace = "http://jazz.net/xmlns/prod/jazz/rqm/process/1.0/", type = ProjectArea.class), @XmlElementRef(name = "title", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class) }) protected List identifierOrTitleOrCategory; @XmlAttribute(namespace = "http://www.w3.org/1999/02/22-rdf-syntax-ns#", required = true) @XmlSchemaType(name = "anyURI") protected String about; /** * Gets the value of the identifierOrTitleOrCategory property. * *

* 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 identifierOrTitleOrCategory property. * *

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

     *    getIdentifierOrTitleOrCategory().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link ProjectArea } * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link Category } * * */ public List getIdentifierOrTitleOrCategory() { if (identifierOrTitleOrCategory == null) { identifierOrTitleOrCategory = new ArrayList(); } return this.identifierOrTitleOrCategory; } /** * Gets the value of the about property. * * @return * possible object is * {@link String } * */ public String getAbout() { return about; } /** * Sets the value of the about property. * * @param value * allowed object is * {@link String } * */ public void setAbout(String value) { this.about = value; } }