com.ibm.rqm.xml.bind.Risk 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.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>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="id" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="riskLevel" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="factors" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="factor" maxOccurs="unbounded" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="id" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="cost" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="weight" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="probability" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="mitigationAction" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* <element name="commnunityAssessment" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="riskLevel" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="veryHighAmount" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="highAmount" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="neutralAmount" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="lowAmount" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="veryLowAmount" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element ref="{http://jazz.net/xmlns/alm/qm/v0.1/}riskComment" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"id",
"riskLevel",
"factors",
"commnunityAssessment"
})
@XmlRootElement(name = "risk")
public class Risk {
protected Integer id;
protected Integer riskLevel;
protected Risk.Factors factors;
protected Risk.CommnunityAssessment commnunityAssessment;
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setId(Integer value) {
this.id = value;
}
/**
* Gets the value of the riskLevel property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getRiskLevel() {
return riskLevel;
}
/**
* Sets the value of the riskLevel property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setRiskLevel(Integer value) {
this.riskLevel = value;
}
/**
* Gets the value of the factors property.
*
* @return
* possible object is
* {@link Risk.Factors }
*
*/
public Risk.Factors getFactors() {
return factors;
}
/**
* Sets the value of the factors property.
*
* @param value
* allowed object is
* {@link Risk.Factors }
*
*/
public void setFactors(Risk.Factors value) {
this.factors = value;
}
/**
* Gets the value of the commnunityAssessment property.
*
* @return
* possible object is
* {@link Risk.CommnunityAssessment }
*
*/
public Risk.CommnunityAssessment getCommnunityAssessment() {
return commnunityAssessment;
}
/**
* Sets the value of the commnunityAssessment property.
*
* @param value
* allowed object is
* {@link Risk.CommnunityAssessment }
*
*/
public void setCommnunityAssessment(Risk.CommnunityAssessment value) {
this.commnunityAssessment = 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="riskLevel" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="veryHighAmount" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="highAmount" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="neutralAmount" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="lowAmount" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="veryLowAmount" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element ref="{http://jazz.net/xmlns/alm/qm/v0.1/}riskComment" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"riskLevel",
"veryHighAmount",
"highAmount",
"neutralAmount",
"lowAmount",
"veryLowAmount",
"riskComment"
})
public static class CommnunityAssessment {
protected Integer riskLevel;
protected Integer veryHighAmount;
protected Integer highAmount;
protected Integer neutralAmount;
protected Integer lowAmount;
protected Integer veryLowAmount;
protected List riskComment;
/**
* Gets the value of the riskLevel property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getRiskLevel() {
return riskLevel;
}
/**
* Sets the value of the riskLevel property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setRiskLevel(Integer value) {
this.riskLevel = value;
}
/**
* Gets the value of the veryHighAmount property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getVeryHighAmount() {
return veryHighAmount;
}
/**
* Sets the value of the veryHighAmount property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setVeryHighAmount(Integer value) {
this.veryHighAmount = value;
}
/**
* Gets the value of the highAmount property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getHighAmount() {
return highAmount;
}
/**
* Sets the value of the highAmount property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setHighAmount(Integer value) {
this.highAmount = value;
}
/**
* Gets the value of the neutralAmount property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getNeutralAmount() {
return neutralAmount;
}
/**
* Sets the value of the neutralAmount property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setNeutralAmount(Integer value) {
this.neutralAmount = value;
}
/**
* Gets the value of the lowAmount property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getLowAmount() {
return lowAmount;
}
/**
* Sets the value of the lowAmount property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setLowAmount(Integer value) {
this.lowAmount = value;
}
/**
* Gets the value of the veryLowAmount property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getVeryLowAmount() {
return veryLowAmount;
}
/**
* Sets the value of the veryLowAmount property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setVeryLowAmount(Integer value) {
this.veryLowAmount = value;
}
/**
* Gets the value of the riskComment 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 riskComment property.
*
*
* For example, to add a new item, do as follows:
*
* getRiskComment().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link RiskComment }
*
*
*/
public List getRiskComment() {
if (riskComment == null) {
riskComment = new ArrayList();
}
return this.riskComment;
}
}
/**
* 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="factor" maxOccurs="unbounded" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="id" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="cost" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="weight" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="probability" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="mitigationAction" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"factor"
})
public static class Factors {
protected List factor;
/**
* Gets the value of the factor 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 factor property.
*
*
* For example, to add a new item, do as follows:
*
* getFactor().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Risk.Factors.Factor }
*
*
*/
public List getFactor() {
if (factor == null) {
factor = new ArrayList();
}
return this.factor;
}
/**
* 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="id" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="cost" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="weight" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="probability" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="mitigationAction" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"id",
"name",
"description",
"cost",
"weight",
"probability",
"mitigationAction"
})
public static class Factor {
protected Integer id;
@XmlElement(required = true)
protected String name;
protected String description;
protected Integer cost;
protected Integer weight;
protected Integer probability;
protected String mitigationAction;
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setId(Integer value) {
this.id = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = 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 cost property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getCost() {
return cost;
}
/**
* Sets the value of the cost property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setCost(Integer value) {
this.cost = value;
}
/**
* Gets the value of the weight property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getWeight() {
return weight;
}
/**
* Sets the value of the weight property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setWeight(Integer value) {
this.weight = value;
}
/**
* Gets the value of the probability property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getProbability() {
return probability;
}
/**
* Sets the value of the probability property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setProbability(Integer value) {
this.probability = value;
}
/**
* Gets the value of the mitigationAction property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMitigationAction() {
return mitigationAction;
}
/**
* Sets the value of the mitigationAction property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMitigationAction(String value) {
this.mitigationAction = value;
}
}
}
}