com.ibm.rqm.xml.bind.oslc_qm.TestPlan 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.oslc_qm;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
import com.ibm.rqm.xml.bind.dcterms.Creator;
import com.ibm.rqm.xml.bind.dcterms.OSLCContributor;
import com.ibm.rqm.xml.rdf.TypedNodeType;
/**
* Java class for TestPlan complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="TestPlan">
* <complexContent>
* <extension base="{http://www.w3.org/1999/02/22-rdf-syntax-ns#}typedNodeType">
* <sequence>
* <element ref="{http://purl.org/dc/terms/}title"/>
* <element ref="{http://purl.org/dc/terms/}description"/>
* <element ref="{http://open-services.net/ns/core#}shortId"/>
* <element ref="{http://purl.org/dc/terms/}created"/>
* <element ref="{http://purl.org/dc/terms/}modified"/>
* <element ref="{http://purl.org/dc/terms/}creator"/>
* <element ref="{http://purl.org/dc/terms/}contributor"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TestPlan", propOrder = {
"title",
"description",
"shortId",
"created",
"modified",
"creator",
"contributor"
})
public class TestPlan
extends TypedNodeType
{
@XmlElement(namespace = "http://purl.org/dc/terms/", required = true)
protected String title;
@XmlElement(namespace = "http://purl.org/dc/terms/", required = true)
protected String description;
@XmlElement(namespace = "http://open-services.net/ns/core#")
protected int shortId;
@XmlElement(namespace = "http://purl.org/dc/terms/", required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar created;
@XmlElement(namespace = "http://purl.org/dc/terms/", required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar modified;
@XmlElement(namespace = "http://purl.org/dc/terms/", required = true)
protected Creator creator;
@XmlElement(namespace = "http://purl.org/dc/terms/", required = true)
protected OSLCContributor contributor;
/**
* 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 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 shortId property.
*
*/
public int getShortId() {
return shortId;
}
/**
* Sets the value of the shortId property.
*
*/
public void setShortId(int value) {
this.shortId = value;
}
/**
* Gets the value of the created property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getCreated() {
return created;
}
/**
* Sets the value of the created property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setCreated(XMLGregorianCalendar value) {
this.created = value;
}
/**
* Gets the value of the modified property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getModified() {
return modified;
}
/**
* Sets the value of the modified property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setModified(XMLGregorianCalendar value) {
this.modified = value;
}
/**
* Gets the value of the creator property.
*
* @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;
}
/**
* Gets the value of the contributor property.
*
* @return
* possible object is
* {@link OSLCContributor }
*
*/
public OSLCContributor getContributor() {
return contributor;
}
/**
* Sets the value of the contributor property.
*
* @param value
* allowed object is
* {@link OSLCContributor }
*
*/
public void setContributor(OSLCContributor value) {
this.contributor = value;
}
}