checkmarx.wsdl.portal.CxDataRetentionConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cx-spring-boot-sdk Show documentation
Show all versions of cx-spring-boot-sdk Show documentation
Checkmarx Java Spring Boot SDK
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-646
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2017.11.17 at 10:51:56 PM EST
//
package checkmarx.wsdl.portal;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for CxDataRetentionConfiguration complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CxDataRetentionConfiguration">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="DataRetentionType" type="{http://Checkmarx.com}CxDataRetentionType"/>
* <element name="NumOfScansToPreserve" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="StartDate" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="EndDate" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="DurationLimitInHours" type="{http://www.w3.org/2001/XMLSchema}long"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CxDataRetentionConfiguration", propOrder = {
"dataRetentionType",
"numOfScansToPreserve",
"startDate",
"endDate",
"durationLimitInHours"
})
public class CxDataRetentionConfiguration {
@XmlElement(name = "DataRetentionType", required = true)
protected CxDataRetentionType dataRetentionType;
@XmlElement(name = "NumOfScansToPreserve")
protected int numOfScansToPreserve;
@XmlElement(name = "StartDate")
protected long startDate;
@XmlElement(name = "EndDate")
protected long endDate;
@XmlElement(name = "DurationLimitInHours", required = true, type = Long.class, nillable = true)
protected Long durationLimitInHours;
/**
* Gets the value of the dataRetentionType property.
*
* @return
* possible object is
* {@link CxDataRetentionType }
*
*/
public CxDataRetentionType getDataRetentionType() {
return dataRetentionType;
}
/**
* Sets the value of the dataRetentionType property.
*
* @param value
* allowed object is
* {@link CxDataRetentionType }
*
*/
public void setDataRetentionType(CxDataRetentionType value) {
this.dataRetentionType = value;
}
/**
* Gets the value of the numOfScansToPreserve property.
*
*/
public int getNumOfScansToPreserve() {
return numOfScansToPreserve;
}
/**
* Sets the value of the numOfScansToPreserve property.
*
*/
public void setNumOfScansToPreserve(int value) {
this.numOfScansToPreserve = value;
}
/**
* Gets the value of the startDate property.
*
*/
public long getStartDate() {
return startDate;
}
/**
* Sets the value of the startDate property.
*
*/
public void setStartDate(long value) {
this.startDate = value;
}
/**
* Gets the value of the endDate property.
*
*/
public long getEndDate() {
return endDate;
}
/**
* Sets the value of the endDate property.
*
*/
public void setEndDate(long value) {
this.endDate = value;
}
/**
* Gets the value of the durationLimitInHours property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getDurationLimitInHours() {
return durationLimitInHours;
}
/**
* Sets the value of the durationLimitInHours property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setDurationLimitInHours(Long value) {
this.durationLimitInHours = value;
}
}