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

com.ibm.rqm.xml.bind.Request 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.bind.annotation.XmlValue;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <extension base="{http://jazz.net/xmlns/alm/qm/v0.1/}reportableArtifact">
 *       <sequence>
 *         <element name="webId" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element ref="{http://purl.org/dc/elements/1.1/}description"/>
 *         <element name="confirmationDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 *         <element name="createDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 *         <element name="updated" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 *         <element name="title" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="summary" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="fulfiller">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <attribute ref="{http://www.w3.org/1999/02/22-rdf-syntax-ns#}resource"/>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="requester">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <attribute ref="{http://www.w3.org/1999/02/22-rdf-syntax-ns#}resource"/>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="reserveFrom" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 *         <element name="reserveTo" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 *         <element name="requestType" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="priority" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element ref="{http://jazz.net/xmlns/alm/v0.1/}state"/>
 *         <element name="visibleId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="configuration" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="comments" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="changestates">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="changestate" maxOccurs="unbounded">
 *                     <complexType>
 *                       <complexContent>
 *                         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                           <sequence>
 *                             <element name="stateid" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *                             <element name="oldstate" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *                             <element name="newstate" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *                             <element name="statechangedate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 *                             <element name="oldstatechangedate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 *                             <element name="statechangedby">
 *                               <complexType>
 *                                 <complexContent>
 *                                   <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                                     <attribute ref="{http://www.w3.org/1999/02/22-rdf-syntax-ns#}resource"/>
 *                                   </restriction>
 *                                 </complexContent>
 *                               </complexType>
 *                             </element>
 *                           </sequence>
 *                         </restriction>
 *                       </complexContent>
 *                     </complexType>
 *                   </element>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "webId", "description", "confirmationDate", "createDate", "updated", "title", "summary", "fulfiller", "requester", "reserveFrom", "reserveTo", "requestType", "priority", "state", "visibleId", "configuration", "comments", "changestates" }) @XmlRootElement(name = "request") public class Request extends ReportableArtifact { protected Integer webId; @XmlElement(namespace = "http://purl.org/dc/elements/1.1/", required = true) protected String description; @XmlElement(required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar confirmationDate; @XmlElement(required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar createDate; @XmlElement(required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar updated; @XmlElement(required = true) protected String title; @XmlElement(required = true) protected String summary; @XmlElement(required = true) protected Request.Fulfiller fulfiller; @XmlElement(required = true) protected Request.Requester requester; @XmlElement(required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar reserveFrom; @XmlElement(required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar reserveTo; @XmlElement(required = true) protected String requestType; @XmlElement(required = true) protected String priority; @XmlElement(namespace = "http://jazz.net/xmlns/alm/v0.1/", required = true) protected State state; @XmlElement(required = true) protected String visibleId; @XmlElement(required = true) protected String configuration; @XmlElement(required = true) protected String comments; @XmlElement(required = true) protected Request.Changestates changestates; /** * Gets the value of the webId property. * * @return * possible object is * {@link Integer } * */ public Integer getWebId() { return webId; } /** * Sets the value of the webId property. * * @param value * allowed object is * {@link Integer } * */ public void setWebId(Integer value) { this.webId = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the confirmationDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getConfirmationDate() { return confirmationDate; } /** * Sets the value of the confirmationDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setConfirmationDate(XMLGregorianCalendar value) { this.confirmationDate = value; } /** * Gets the value of the createDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getCreateDate() { return createDate; } /** * Sets the value of the createDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setCreateDate(XMLGregorianCalendar value) { this.createDate = value; } /** * Gets the value of the updated property. * * @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 title property. * * @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 fulfiller property. * * @return * possible object is * {@link Request.Fulfiller } * */ public Request.Fulfiller getFulfiller() { return fulfiller; } /** * Sets the value of the fulfiller property. * * @param value * allowed object is * {@link Request.Fulfiller } * */ public void setFulfiller(Request.Fulfiller value) { this.fulfiller = value; } /** * Gets the value of the requester property. * * @return * possible object is * {@link Request.Requester } * */ public Request.Requester getRequester() { return requester; } /** * Sets the value of the requester property. * * @param value * allowed object is * {@link Request.Requester } * */ public void setRequester(Request.Requester value) { this.requester = value; } /** * Gets the value of the reserveFrom property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getReserveFrom() { return reserveFrom; } /** * Sets the value of the reserveFrom property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setReserveFrom(XMLGregorianCalendar value) { this.reserveFrom = value; } /** * Gets the value of the reserveTo property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getReserveTo() { return reserveTo; } /** * Sets the value of the reserveTo property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setReserveTo(XMLGregorianCalendar value) { this.reserveTo = value; } /** * Gets the value of the requestType property. * * @return * possible object is * {@link String } * */ public String getRequestType() { return requestType; } /** * Sets the value of the requestType property. * * @param value * allowed object is * {@link String } * */ public void setRequestType(String value) { this.requestType = value; } /** * Gets the value of the priority property. * * @return * possible object is * {@link String } * */ public String getPriority() { return priority; } /** * Sets the value of the priority property. * * @param value * allowed object is * {@link String } * */ public void setPriority(String value) { this.priority = value; } /** * The current state of the request as per the state transition matrix. * * @return * possible object is * {@link State } * */ public State getState() { return state; } /** * Sets the value of the state property. * * @param value * allowed object is * {@link State } * */ public void setState(State value) { this.state = value; } /** * Gets the value of the visibleId property. * * @return * possible object is * {@link String } * */ public String getVisibleId() { return visibleId; } /** * Sets the value of the visibleId property. * * @param value * allowed object is * {@link String } * */ public void setVisibleId(String value) { this.visibleId = value; } /** * Gets the value of the configuration property. * * @return * possible object is * {@link String } * */ public String getConfiguration() { return configuration; } /** * Sets the value of the configuration property. * * @param value * allowed object is * {@link String } * */ public void setConfiguration(String value) { this.configuration = value; } /** * Gets the value of the comments property. * * @return * possible object is * {@link String } * */ public String getComments() { return comments; } /** * Sets the value of the comments property. * * @param value * allowed object is * {@link String } * */ public void setComments(String value) { this.comments = value; } /** * Gets the value of the changestates property. * * @return * possible object is * {@link Request.Changestates } * */ public Request.Changestates getChangestates() { return changestates; } /** * Sets the value of the changestates property. * * @param value * allowed object is * {@link Request.Changestates } * */ public void setChangestates(Request.Changestates value) { this.changestates = value; } /** *

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">
     *       <sequence>
     *         <element name="changestate" maxOccurs="unbounded">
     *           <complexType>
     *             <complexContent>
     *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *                 <sequence>
     *                   <element name="stateid" type="{http://www.w3.org/2001/XMLSchema}string"/>
     *                   <element name="oldstate" type="{http://www.w3.org/2001/XMLSchema}string"/>
     *                   <element name="newstate" type="{http://www.w3.org/2001/XMLSchema}string"/>
     *                   <element name="statechangedate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
     *                   <element name="oldstatechangedate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
     *                   <element name="statechangedby">
     *                     <complexType>
     *                       <complexContent>
     *                         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *                           <attribute ref="{http://www.w3.org/1999/02/22-rdf-syntax-ns#}resource"/>
     *                         </restriction>
     *                       </complexContent>
     *                     </complexType>
     *                   </element>
     *                 </sequence>
     *               </restriction>
     *             </complexContent>
     *           </complexType>
     *         </element>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "changestate" }) public static class Changestates { @XmlElement(required = true) protected List changestate; /** * Gets the value of the changestate 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 changestate property. * *

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

         *    getChangestate().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Request.Changestates.Changestate } * * */ public List getChangestate() { if (changestate == null) { changestate = new ArrayList(); } return this.changestate; } /** *

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">
         *       <sequence>
         *         <element name="stateid" type="{http://www.w3.org/2001/XMLSchema}string"/>
         *         <element name="oldstate" type="{http://www.w3.org/2001/XMLSchema}string"/>
         *         <element name="newstate" type="{http://www.w3.org/2001/XMLSchema}string"/>
         *         <element name="statechangedate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
         *         <element name="oldstatechangedate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
         *         <element name="statechangedby">
         *           <complexType>
         *             <complexContent>
         *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
         *                 <attribute ref="{http://www.w3.org/1999/02/22-rdf-syntax-ns#}resource"/>
         *               </restriction>
         *             </complexContent>
         *           </complexType>
         *         </element>
         *       </sequence>
         *     </restriction>
         *   </complexContent>
         * </complexType>
         * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "stateid", "oldstate", "newstate", "statechangedate", "oldstatechangedate", "statechangedby" }) public static class Changestate { @XmlElement(required = true) protected String stateid; @XmlElement(required = true) protected String oldstate; @XmlElement(required = true) protected String newstate; @XmlElement(required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar statechangedate; @XmlElement(required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar oldstatechangedate; @XmlElement(required = true) protected Request.Changestates.Changestate.Statechangedby statechangedby; /** * Gets the value of the stateid property. * * @return * possible object is * {@link String } * */ public String getStateid() { return stateid; } /** * Sets the value of the stateid property. * * @param value * allowed object is * {@link String } * */ public void setStateid(String value) { this.stateid = value; } /** * Gets the value of the oldstate property. * * @return * possible object is * {@link String } * */ public String getOldstate() { return oldstate; } /** * Sets the value of the oldstate property. * * @param value * allowed object is * {@link String } * */ public void setOldstate(String value) { this.oldstate = value; } /** * Gets the value of the newstate property. * * @return * possible object is * {@link String } * */ public String getNewstate() { return newstate; } /** * Sets the value of the newstate property. * * @param value * allowed object is * {@link String } * */ public void setNewstate(String value) { this.newstate = value; } /** * Gets the value of the statechangedate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getStatechangedate() { return statechangedate; } /** * Sets the value of the statechangedate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setStatechangedate(XMLGregorianCalendar value) { this.statechangedate = value; } /** * Gets the value of the oldstatechangedate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getOldstatechangedate() { return oldstatechangedate; } /** * Sets the value of the oldstatechangedate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setOldstatechangedate(XMLGregorianCalendar value) { this.oldstatechangedate = value; } /** * Gets the value of the statechangedby property. * * @return * possible object is * {@link Request.Changestates.Changestate.Statechangedby } * */ public Request.Changestates.Changestate.Statechangedby getStatechangedby() { return statechangedby; } /** * Sets the value of the statechangedby property. * * @param value * allowed object is * {@link Request.Changestates.Changestate.Statechangedby } * */ public void setStatechangedby(Request.Changestates.Changestate.Statechangedby value) { this.statechangedby = value; } /** * [READ-ONLY] The Jazz Team Server (JTS) user ID of the contributor that changed the state. * *

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"/>
             *     </restriction>
             *   </complexContent>
             * </complexType>
             * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "content" }) public static class Statechangedby { @XmlValue protected String content; @XmlAttribute(namespace = "http://www.w3.org/1999/02/22-rdf-syntax-ns#") @XmlSchemaType(name = "anyURI") protected String resource; /** * [READ-ONLY] The Jazz Team Server (JTS) user ID of the contributor that changed the state. * * @return * possible object is * {@link String } * */ public String getContent() { return content; } /** * Sets the value of the content property. * * @param value * allowed object is * {@link String } * */ public void setContent(String value) { this.content = value; } /** * [READ-ONLY] The Jazz Team Server (JTS) URL of the contributor that changed the state. * * @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; } } } } /** * The Jazz Team Server (JTS) user ID of the contributor responsible for fulfilling the request. * *

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"/>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "content" }) public static class Fulfiller { @XmlValue protected String content; @XmlAttribute(namespace = "http://www.w3.org/1999/02/22-rdf-syntax-ns#") @XmlSchemaType(name = "anyURI") protected String resource; /** * The Jazz Team Server (JTS) user ID of the contributor responsible for fulfilling the request. * * @return * possible object is * {@link String } * */ public String getContent() { return content; } /** * Sets the value of the content property. * * @param value * allowed object is * {@link String } * */ public void setContent(String value) { this.content = value; } /** * [READ-ONLY] The Jazz Team Server (JTS) URL of the contributor responsible for fulfilling the request. * * @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; } } /** * The Jazz Team Server (JTS) user ID of the contributor making the request. * *

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"/>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "content" }) public static class Requester { @XmlValue protected String content; @XmlAttribute(namespace = "http://www.w3.org/1999/02/22-rdf-syntax-ns#") @XmlSchemaType(name = "anyURI") protected String resource; /** * The Jazz Team Server (JTS) user ID of the contributor making the request. * * @return * possible object is * {@link String } * */ public String getContent() { return content; } /** * Sets the value of the content property. * * @param value * allowed object is * {@link String } * */ public void setContent(String value) { this.content = value; } /** * [READ-ONLY] The Jazz Team Server (JTS) URL of the contributor making the request. * * @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; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy