com.ibm.rqm.xml.bind.Requirement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of demoiselle-behave-integration-alm Show documentation
Show all versions of demoiselle-behave-integration-alm Show documentation
Demoiselle Behave Integration - ALM
//
// 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 javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
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;
/**
* 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/}title"/>
* <element ref="{http://purl.org/dc/elements/1.1/}description"/>
* <element ref="{http://jazz.net/xmlns/alm/v0.1/}updated"/>
* <element ref="{http://purl.org/dc/elements/1.1/}creator"/>
* <element ref="{http://jazz.net/xmlns/alm/v0.1/}owner"/>
* <element name="priority" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="reviewStatus" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element ref="{http://jazz.net/xmlns/alm/v0.1/}suspectStatus"/>
* <element name="creationtime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="externalTag" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element ref="{http://jazz.net/xmlns/alm/qm/v0.1/}customAttributes" minOccurs="0"/>
* <element ref="{http://jazz.net/xmlns/alm/qm/v0.1/}risk" minOccurs="0"/>
* <element name="tags" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="externalReqId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"webId",
"title",
"description",
"updated",
"creator",
"owner",
"priority",
"reviewStatus",
"suspectStatus",
"creationtime",
"externalTag",
"customAttributes",
"risk",
"tags",
"externalReqId"
})
@XmlRootElement(name = "requirement")
public class Requirement
extends ReportableArtifact
{
protected Integer webId;
@XmlElement(namespace = "http://purl.org/dc/elements/1.1/", required = true)
protected String title;
@XmlElement(namespace = "http://purl.org/dc/elements/1.1/", required = true)
protected String description;
@XmlElement(namespace = "http://jazz.net/xmlns/alm/v0.1/", required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar updated;
@XmlElement(namespace = "http://purl.org/dc/elements/1.1/", required = true)
protected Creator creator;
@XmlElement(namespace = "http://jazz.net/xmlns/alm/v0.1/", required = true)
protected Owner owner;
@XmlElement(required = true)
protected String priority;
@XmlElement(required = true)
protected String reviewStatus;
@XmlElement(namespace = "http://jazz.net/xmlns/alm/v0.1/", required = true)
protected String suspectStatus;
@XmlElement(required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creationtime;
@XmlElement(required = true)
protected String externalTag;
protected CustomAttributes customAttributes;
protected Risk risk;
@XmlElement(required = true)
protected String tags;
@XmlElement(required = true)
protected String externalReqId;
/**
* 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;
}
/**
* A name given to the requirement.
*
* @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;
}
/**
* Summary of the requirement.
*
* @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;
}
/**
* [READ-ONLY] XML dateTime of the last update of the requirement.
*
* @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;
}
/**
* [READ-ONLY] [IMMUTABLE] The contributor that created the requirement. Note, not available in all requirements management systems.
*
* @return
* possible object is
* {@link Creator }
*
*/
public Creator getCreator() {
return creator;
}
/**
* Sets the value of the creator property.
*
* @param value
* allowed object is
* {@link Creator }
*
*/
public void setCreator(Creator value) {
this.creator = value;
}
/**
* [READ-ONLY] The contributor that owns the requirement.
*
* @return
* possible object is
* {@link Owner }
*
*/
public Owner getOwner() {
return owner;
}
/**
* Sets the value of the owner property.
*
* @param value
* allowed object is
* {@link Owner }
*
*/
public void setOwner(Owner value) {
this.owner = 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;
}
/**
* Gets the value of the reviewStatus property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getReviewStatus() {
return reviewStatus;
}
/**
* Sets the value of the reviewStatus property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setReviewStatus(String value) {
this.reviewStatus = value;
}
/**
* The trace status of the requirement.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSuspectStatus() {
return suspectStatus;
}
/**
* Sets the value of the suspectStatus property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSuspectStatus(String value) {
this.suspectStatus = value;
}
/**
* Gets the value of the creationtime property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getCreationtime() {
return creationtime;
}
/**
* Sets the value of the creationtime property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setCreationtime(XMLGregorianCalendar value) {
this.creationtime = value;
}
/**
* Gets the value of the externalTag property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getExternalTag() {
return externalTag;
}
/**
* Sets the value of the externalTag property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setExternalTag(String value) {
this.externalTag = value;
}
/**
* [READ-ONLY] List of user generated name/value pairs.
*
* @return
* possible object is
* {@link CustomAttributes }
*
*/
public CustomAttributes getCustomAttributes() {
return customAttributes;
}
/**
* Sets the value of the customAttributes property.
*
* @param value
* allowed object is
* {@link CustomAttributes }
*
*/
public void setCustomAttributes(CustomAttributes value) {
this.customAttributes = value;
}
/**
* The risk associated with the requirement. The possible values are (internal representation): Unassigned (0), Very Low (1), Low (2), Medium (3), High (4), and Very High (5)
*
* @return
* possible object is
* {@link Risk }
*
*/
public Risk getRisk() {
return risk;
}
/**
* Sets the value of the risk property.
*
* @param value
* allowed object is
* {@link Risk }
*
*/
public void setRisk(Risk value) {
this.risk = value;
}
/**
* Gets the value of the tags property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTags() {
return tags;
}
/**
* Sets the value of the tags property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTags(String value) {
this.tags = value;
}
/**
* Gets the value of the externalReqId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getExternalReqId() {
return externalReqId;
}
/**
* Sets the value of the externalReqId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setExternalReqId(String value) {
this.externalReqId = value;
}
}