
com.fortify.schema.fws.DescriptionAndRecommendationResponse Maven / Gradle / Ivy
package com.fortify.schema.fws;
import javax.annotation.Generated;
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;
import xmlns.www_fortifysoftware_com.schema.wstypes.Status;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <extension base="{xmlns://www.fortifysoftware.com/schema/wsTypes}status">
* <sequence>
* <element name="Description" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="Recommendation" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="Abstract" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"description",
"recommendation",
"_abstract"
})
@XmlRootElement(name = "DescriptionAndRecommendationResponse")
@Generated(value = "com.sun.tools.xjc.Driver", date = "2012-10-24T04:33:46+02:00", comments = "JAXB RI v2.2.5")
public class DescriptionAndRecommendationResponse
extends Status
{
@XmlElement(name = "Description", required = true)
@Generated(value = "com.sun.tools.xjc.Driver", date = "2012-10-24T04:33:46+02:00", comments = "JAXB RI v2.2.5")
protected String description;
@XmlElement(name = "Recommendation", required = true)
@Generated(value = "com.sun.tools.xjc.Driver", date = "2012-10-24T04:33:46+02:00", comments = "JAXB RI v2.2.5")
protected String recommendation;
@XmlElement(name = "Abstract", required = true)
@Generated(value = "com.sun.tools.xjc.Driver", date = "2012-10-24T04:33:46+02:00", comments = "JAXB RI v2.2.5")
protected String _abstract;
/**
* Gets the value of the description property.
*
* @return
* possible object is
* {@link String }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2012-10-24T04:33:46+02:00", comments = "JAXB RI v2.2.5")
public String getDescription() {
return description;
}
/**
* Sets the value of the description property.
*
* @param value
* allowed object is
* {@link String }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2012-10-24T04:33:46+02:00", comments = "JAXB RI v2.2.5")
public void setDescription(String value) {
this.description = value;
}
/**
* Gets the value of the recommendation property.
*
* @return
* possible object is
* {@link String }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2012-10-24T04:33:46+02:00", comments = "JAXB RI v2.2.5")
public String getRecommendation() {
return recommendation;
}
/**
* Sets the value of the recommendation property.
*
* @param value
* allowed object is
* {@link String }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2012-10-24T04:33:46+02:00", comments = "JAXB RI v2.2.5")
public void setRecommendation(String value) {
this.recommendation = value;
}
/**
* Gets the value of the abstract property.
*
* @return
* possible object is
* {@link String }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2012-10-24T04:33:46+02:00", comments = "JAXB RI v2.2.5")
public String getAbstract() {
return _abstract;
}
/**
* Sets the value of the abstract property.
*
* @param value
* allowed object is
* {@link String }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2012-10-24T04:33:46+02:00", comments = "JAXB RI v2.2.5")
public void setAbstract(String value) {
this._abstract = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy