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

com.ibm.rqm.xml.bind.LegacyTeamArea 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;

import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * [DEPRECATED] A team of contributors within the scope of a project area.  Note, this property will be removed after RQM 4.0.
 * 
 * 

Java class for teamarea element declaration. * *

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

 * <element name="teamarea">
 *   <complexType>
 *     <complexContent>
 *       <extension base="{http://jazz.net/xmlns/alm/qm/v0.1/}reportableArtifact">
 *         <sequence>
 *           <element ref="{http://purl.org/dc/elements/1.1/}title"/>
 *           <element name="summary" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *           <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *           <element ref="{http://jazz.net/xmlns/alm/v0.1/}updated"/>
 *           <element name="contributor" maxOccurs="unbounded" minOccurs="0">
 *             <complexType>
 *               <complexContent>
 *                 <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                   <attribute ref="{http://www.w3.org/1999/02/22-rdf-syntax-ns#}resource"/>
 *                   <attribute name="href" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
 *                   <attribute ref="{http://schema.ibm.com/vega/2008/}id"/>
 *                 </restriction>
 *               </complexContent>
 *             </complexType>
 *           </element>
 *         </sequence>
 *       </extension>
 *     </complexContent>
 *   </complexType>
 * </element>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "title", "summary", "id", "updated", "contributor" }) @XmlRootElement(name = "teamarea") public class LegacyTeamArea extends ReportableArtifact { @XmlElement(namespace = "http://purl.org/dc/elements/1.1/", required = true) protected String title; @XmlElement(required = true) protected String summary; @XmlElement(required = true) protected String id; @XmlElement(namespace = "http://jazz.net/xmlns/alm/v0.1/", required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar updated; protected List contributor; /** * [READ-ONLY] A name given to the team area. * * @return * possible object is * {@link String } * */ public String getTitle() { return title; } /** * Sets the value of the title property. * * @param value * allowed object is * {@link String } * */ public void setTitle(String value) { this.title = value; } /** * Gets the value of the summary property. * * @return * possible object is * {@link String } * */ public String getSummary() { return summary; } /** * Sets the value of the summary property. * * @param value * allowed object is * {@link String } * */ public void setSummary(String value) { this.summary = value; } /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * [READ-ONLY] XML dateTime of the last update of the team area. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getUpdated() { return updated; } /** * Sets the value of the updated property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setUpdated(XMLGregorianCalendar value) { this.updated = value; } /** * Gets the value of the contributor 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 contributor property. * *

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

     *    getContributor().add(newItem);
     * 
* * *

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

Java class for anonymous complex type. * *

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

     * <complexType>
     *   <complexContent>
     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *       <attribute ref="{http://www.w3.org/1999/02/22-rdf-syntax-ns#}resource"/>
     *       <attribute name="href" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
     *       <attribute ref="{http://schema.ibm.com/vega/2008/}id"/>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class Contributor { @XmlAttribute(namespace = "http://www.w3.org/1999/02/22-rdf-syntax-ns#") @XmlSchemaType(name = "anyURI") protected String resource; @XmlAttribute(required = true) @XmlSchemaType(name = "anyURI") protected String href; @XmlAttribute(namespace = "http://schema.ibm.com/vega/2008/") protected String id; /** * [READ-ONLY] The Jazz Team Server (JTS) URL of the contributor that is a member of the team area. * * @return * possible object is * {@link String } * */ public String getResource() { return resource; } /** * Sets the value of the resource property. * * @param value * allowed object is * {@link String } * */ public void setResource(String value) { this.resource = value; } /** * Gets the value of the href property. * * @return * possible object is * {@link String } * */ public String getHref() { return href; } /** * Sets the value of the href property. * * @param value * allowed object is * {@link String } * */ public void setHref(String value) { this.href = value; } /** * [READ-ONLY] UUID of the contributor. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy