com.ibm.rqm.xml.bind.Testphase Maven / Gradle / Ivy
Show all versions of demoiselle-behave-integration-alm Show documentation
//
// 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;
/**
* 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 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://jazz.net/xmlns/alm/v0.1/}state"/>
* <element ref="{http://purl.org/dc/elements/1.1/}creator"/>
* <element ref="{http://jazz.net/xmlns/alm/v0.1/}owner"/>
* <element name="expectedTotalPoints" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="expectedDefects" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="expectedValidityRate" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="expectedStartDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="expectedEndDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="starttime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="endtime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="custom1" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="custom2" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="custom3" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="testplan">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <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>
* <element name="iteration">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="href" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
* </restriction>
* </complexContent>
* </complexType>
* </element>
* <element name="detail" maxOccurs="unbounded" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="comment" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="date" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="pointsAttempted" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="pointsCompleted" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"title",
"description",
"updated",
"state",
"creator",
"owner",
"expectedTotalPoints",
"expectedDefects",
"expectedValidityRate",
"expectedStartDate",
"expectedEndDate",
"starttime",
"endtime",
"custom1",
"custom2",
"custom3",
"testplan",
"iteration",
"detail"
})
@XmlRootElement(name = "testphase")
public class Testphase
extends ReportableArtifact
{
@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://jazz.net/xmlns/alm/v0.1/", required = true)
protected State state;
@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;
protected Integer expectedTotalPoints;
protected Integer expectedDefects;
protected Integer expectedValidityRate;
@XmlElement(required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar expectedStartDate;
@XmlElement(required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar expectedEndDate;
@XmlElement(required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar starttime;
@XmlElement(required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar endtime;
@XmlElement(required = true)
protected String custom1;
@XmlElement(required = true)
protected String custom2;
@XmlElement(required = true)
protected String custom3;
@XmlElement(required = true)
protected Testphase.Testplan testplan;
@XmlElement(required = true)
protected Testphase.Iteration iteration;
protected List detail;
/**
* A name given to the testphase.
*
* @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;
}
/**
* A description of the testphase.
*
* @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] The last modification date of a resource. Format is XML dateTime.
*
* @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;
}
/**
* [DEPRECATED] [READ-ONLY]
*
* @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;
}
/**
* [READ-ONLY] [IMMUTABLE] The contributor that created the test phase.
*
* @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;
}
/**
* The contributor that owns the test phase.
*
* @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 expectedTotalPoints property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getExpectedTotalPoints() {
return expectedTotalPoints;
}
/**
* Sets the value of the expectedTotalPoints property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setExpectedTotalPoints(Integer value) {
this.expectedTotalPoints = value;
}
/**
* Gets the value of the expectedDefects property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getExpectedDefects() {
return expectedDefects;
}
/**
* Sets the value of the expectedDefects property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setExpectedDefects(Integer value) {
this.expectedDefects = value;
}
/**
* Gets the value of the expectedValidityRate property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getExpectedValidityRate() {
return expectedValidityRate;
}
/**
* Sets the value of the expectedValidityRate property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setExpectedValidityRate(Integer value) {
this.expectedValidityRate = value;
}
/**
* Gets the value of the expectedStartDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getExpectedStartDate() {
return expectedStartDate;
}
/**
* Sets the value of the expectedStartDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setExpectedStartDate(XMLGregorianCalendar value) {
this.expectedStartDate = value;
}
/**
* Gets the value of the expectedEndDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getExpectedEndDate() {
return expectedEndDate;
}
/**
* Sets the value of the expectedEndDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setExpectedEndDate(XMLGregorianCalendar value) {
this.expectedEndDate = value;
}
/**
* Gets the value of the starttime property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getStarttime() {
return starttime;
}
/**
* Sets the value of the starttime property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setStarttime(XMLGregorianCalendar value) {
this.starttime = value;
}
/**
* Gets the value of the endtime property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getEndtime() {
return endtime;
}
/**
* Sets the value of the endtime property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setEndtime(XMLGregorianCalendar value) {
this.endtime = value;
}
/**
* Gets the value of the custom1 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCustom1() {
return custom1;
}
/**
* Sets the value of the custom1 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCustom1(String value) {
this.custom1 = value;
}
/**
* Gets the value of the custom2 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCustom2() {
return custom2;
}
/**
* Sets the value of the custom2 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCustom2(String value) {
this.custom2 = value;
}
/**
* Gets the value of the custom3 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCustom3() {
return custom3;
}
/**
* Sets the value of the custom3 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCustom3(String value) {
this.custom3 = value;
}
/**
* Gets the value of the testplan property.
*
* @return
* possible object is
* {@link Testphase.Testplan }
*
*/
public Testphase.Testplan getTestplan() {
return testplan;
}
/**
* Sets the value of the testplan property.
*
* @param value
* allowed object is
* {@link Testphase.Testplan }
*
*/
public void setTestplan(Testphase.Testplan value) {
this.testplan = value;
}
/**
* Gets the value of the iteration property.
*
* @return
* possible object is
* {@link Testphase.Iteration }
*
*/
public Testphase.Iteration getIteration() {
return iteration;
}
/**
* Sets the value of the iteration property.
*
* @param value
* allowed object is
* {@link Testphase.Iteration }
*
*/
public void setIteration(Testphase.Iteration value) {
this.iteration = value;
}
/**
* Gets the value of the detail 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 detail property.
*
*
* For example, to add a new item, do as follows:
*
* getDetail().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Testphase.Detail }
*
*
*/
public List getDetail() {
if (detail == null) {
detail = new ArrayList();
}
return this.detail;
}
/**
* 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="comment" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="date" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="pointsAttempted" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="pointsCompleted" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"comment",
"date",
"pointsAttempted",
"pointsCompleted"
})
public static class Detail {
@XmlElement(required = true)
protected String comment;
@XmlElement(required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar date;
protected Integer pointsAttempted;
protected Integer pointsCompleted;
/**
* Gets the value of the comment property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getComment() {
return comment;
}
/**
* Sets the value of the comment property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setComment(String value) {
this.comment = value;
}
/**
* Gets the value of the date property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getDate() {
return date;
}
/**
* Sets the value of the date property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setDate(XMLGregorianCalendar value) {
this.date = value;
}
/**
* Gets the value of the pointsAttempted property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getPointsAttempted() {
return pointsAttempted;
}
/**
* Sets the value of the pointsAttempted property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setPointsAttempted(Integer value) {
this.pointsAttempted = value;
}
/**
* Gets the value of the pointsCompleted property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getPointsCompleted() {
return pointsCompleted;
}
/**
* Sets the value of the pointsCompleted property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setPointsCompleted(Integer value) {
this.pointsCompleted = 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">
* <attribute name="href" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
public static class Iteration {
@XmlAttribute(required = true)
@XmlSchemaType(name = "anyURI")
protected String href;
/**
* 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;
}
}
/**
* 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 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 Testplan {
@XmlAttribute(required = true)
@XmlSchemaType(name = "anyURI")
protected String href;
@XmlAttribute(namespace = "http://schema.ibm.com/vega/2008/")
protected String id;
/**
* 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;
}
/**
* [DEPRECATED] [READ-ONLY]
*
* @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;
}
}
}