com.ibm.rqm.xml.bind.Executionsequenceresult 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://jazz.net/xmlns/alm/v0.1/}updated"/>
* <element name="isRunning" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="startTime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="endTime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="overallResult" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="associatedBuildRecord">
* <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="executionSequence">
* <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="stepResult" maxOccurs="unbounded" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="type" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="result" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="message" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"updated",
"isRunning",
"startTime",
"endTime",
"overallResult",
"associatedBuildRecord",
"executionSequence",
"stepResult"
})
@XmlRootElement(name = "executionsequenceresult")
public class Executionsequenceresult
extends ReportableArtifact
{
@XmlElement(namespace = "http://jazz.net/xmlns/alm/v0.1/", required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar updated;
protected Boolean isRunning;
@XmlElement(required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar startTime;
@XmlElement(required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar endTime;
@XmlElement(required = true)
protected String overallResult;
@XmlElement(required = true)
protected Executionsequenceresult.AssociatedBuildRecord associatedBuildRecord;
@XmlElement(required = true)
protected Executionsequenceresult.ExecutionSequence executionSequence;
protected List stepResult;
/**
* [READ-ONLY] The timestamp for the last time execution sequence result was updated. 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;
}
/**
* Gets the value of the isRunning property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsRunning() {
return isRunning;
}
/**
* Sets the value of the isRunning property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsRunning(Boolean value) {
this.isRunning = 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 overallResult property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOverallResult() {
return overallResult;
}
/**
* Sets the value of the overallResult property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOverallResult(String value) {
this.overallResult = value;
}
/**
* Gets the value of the associatedBuildRecord property.
*
* @return
* possible object is
* {@link Executionsequenceresult.AssociatedBuildRecord }
*
*/
public Executionsequenceresult.AssociatedBuildRecord getAssociatedBuildRecord() {
return associatedBuildRecord;
}
/**
* Sets the value of the associatedBuildRecord property.
*
* @param value
* allowed object is
* {@link Executionsequenceresult.AssociatedBuildRecord }
*
*/
public void setAssociatedBuildRecord(Executionsequenceresult.AssociatedBuildRecord value) {
this.associatedBuildRecord = value;
}
/**
* Gets the value of the executionSequence property.
*
* @return
* possible object is
* {@link Executionsequenceresult.ExecutionSequence }
*
*/
public Executionsequenceresult.ExecutionSequence getExecutionSequence() {
return executionSequence;
}
/**
* Sets the value of the executionSequence property.
*
* @param value
* allowed object is
* {@link Executionsequenceresult.ExecutionSequence }
*
*/
public void setExecutionSequence(Executionsequenceresult.ExecutionSequence value) {
this.executionSequence = value;
}
/**
* Gets the value of the stepResult 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 stepResult property.
*
*
* For example, to add a new item, do as follows:
*
* getStepResult().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Executionsequenceresult.StepResult }
*
*
*/
public List getStepResult() {
if (stepResult == null) {
stepResult = new ArrayList();
}
return this.stepResult;
}
/**
* 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 AssociatedBuildRecord {
@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;
}
/**
* [READ-ONLY] UUID of the associated build record.
*
* @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;
}
}
/**
* 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 ExecutionSequence {
@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;
}
/**
* [READ-ONLY] UUID of the execution sequence.
*
* @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;
}
}
/**
* 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="type" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="result" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="message" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
public static class StepResult {
@XmlAttribute(required = true)
protected String type;
@XmlAttribute(required = true)
protected String result;
@XmlAttribute
protected String message;
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setType(String value) {
this.type = value;
}
/**
* Gets the value of the result property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getResult() {
return result;
}
/**
* Sets the value of the result property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setResult(String value) {
this.result = value;
}
/**
* Gets the value of the message property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMessage() {
return message;
}
/**
* Sets the value of the message property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMessage(String value) {
this.message = value;
}
}
}