com.ibm.rqm.xml.bind.Project 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.XmlType;
/**
* 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/qm/v0.1/}alias" maxOccurs="unbounded" minOccurs="0"/>
* <element name="category" maxOccurs="unbounded" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="scope" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="term" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="value" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="termUUID" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="valueUUID" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="isDefault" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* </restriction>
* </complexContent>
* </complexType>
* </element>
* <element name="settingsids">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="settingid" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"title",
"description",
"alias",
"category",
"settingsids"
})
@XmlRootElement(name = "project")
public class Project
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;
protected List alias;
protected List category;
@XmlElement(required = true)
protected Project.Settingsids settingsids;
/**
* [READ-ONLY] A name given to the project.
*
* @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;
}
/**
* [READ-ONLY] An account of the project.
*
* @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 alias 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 alias property.
*
*
* For example, to add a new item, do as follows:
*
* getAlias().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Alias }
*
*
*/
public List getAlias() {
if (alias == null) {
alias = new ArrayList();
}
return this.alias;
}
/**
* Gets the value of the category 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 category property.
*
*
* For example, to add a new item, do as follows:
*
* getCategory().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Project.Category }
*
*
*/
public List getCategory() {
if (category == null) {
category = new ArrayList();
}
return this.category;
}
/**
* Gets the value of the settingsids property.
*
* @return
* possible object is
* {@link Project.Settingsids }
*
*/
public Project.Settingsids getSettingsids() {
return settingsids;
}
/**
* Sets the value of the settingsids property.
*
* @param value
* allowed object is
* {@link Project.Settingsids }
*
*/
public void setSettingsids(Project.Settingsids value) {
this.settingsids = 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="scope" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="term" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="value" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="termUUID" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="valueUUID" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="isDefault" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
public static class Category {
@XmlAttribute
protected String scope;
@XmlAttribute
protected String term;
@XmlAttribute
protected String value;
@XmlAttribute
protected String termUUID;
@XmlAttribute
protected String valueUUID;
@XmlAttribute
protected Boolean isDefault;
/**
* Gets the value of the scope property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getScope() {
return scope;
}
/**
* Sets the value of the scope property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setScope(String value) {
this.scope = value;
}
/**
* Gets the value of the term property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTerm() {
return term;
}
/**
* Sets the value of the term property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTerm(String value) {
this.term = value;
}
/**
* Gets the value of the value property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getValue() {
return value;
}
/**
* Sets the value of the value property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setValue(String value) {
this.value = value;
}
/**
* Gets the value of the termUUID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTermUUID() {
return termUUID;
}
/**
* Sets the value of the termUUID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTermUUID(String value) {
this.termUUID = value;
}
/**
* Gets the value of the valueUUID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getValueUUID() {
return valueUUID;
}
/**
* Sets the value of the valueUUID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setValueUUID(String value) {
this.valueUUID = value;
}
/**
* Gets the value of the isDefault property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsDefault() {
return isDefault;
}
/**
* Sets the value of the isDefault property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsDefault(Boolean value) {
this.isDefault = 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="settingid" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"settingid"
})
public static class Settingsids {
protected List settingid;
/**
* Gets the value of the settingid 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 settingid property.
*
*
* For example, to add a new item, do as follows:
*
* getSettingid().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getSettingid() {
if (settingid == null) {
settingid = new ArrayList();
}
return this.settingid;
}
}
}