All Downloads are FREE. Search and download functionalities are using the official Maven repository.

checkmarx.wsdl.portal.ProjectDisplayData Maven / Gradle / Ivy

There is a newer version: 0.4.47
Show newest version
//
// 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 ProjectDisplayData complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="ProjectDisplayData">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Permission" type="{http://Checkmarx.com}UserPermission" minOccurs="0"/>
 *         <element name="projectID" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="ServiceProvider" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Company" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Owner" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="ProjectName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Group" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Preset" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="LastScanDate" type="{http://Checkmarx.com}CxDateTime" minOccurs="0"/>
 *         <element name="TotalScans" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="IsPublic" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="TotalOsaScans" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ProjectDisplayData", propOrder = { "permission", "projectID", "serviceProvider", "company", "owner", "projectName", "group", "preset", "lastScanDate", "totalScans", "isPublic", "totalOsaScans" }) public class ProjectDisplayData { @XmlElement(name = "Permission") protected UserPermission permission; protected long projectID; @XmlElement(name = "ServiceProvider") protected String serviceProvider; @XmlElement(name = "Company") protected String company; @XmlElement(name = "Owner") protected String owner; @XmlElement(name = "ProjectName") protected String projectName; @XmlElement(name = "Group") protected String group; @XmlElement(name = "Preset") protected String preset; @XmlElement(name = "LastScanDate") protected CxDateTime lastScanDate; @XmlElement(name = "TotalScans") protected int totalScans; @XmlElement(name = "IsPublic") protected boolean isPublic; @XmlElement(name = "TotalOsaScans") protected int totalOsaScans; /** * Gets the value of the permission property. * * @return * possible object is * {@link UserPermission } * */ public UserPermission getPermission() { return permission; } /** * Sets the value of the permission property. * * @param value * allowed object is * {@link UserPermission } * */ public void setPermission(UserPermission value) { this.permission = value; } /** * Gets the value of the projectID property. * */ public long getProjectID() { return projectID; } /** * Sets the value of the projectID property. * */ public void setProjectID(long value) { this.projectID = value; } /** * Gets the value of the serviceProvider property. * * @return * possible object is * {@link String } * */ public String getServiceProvider() { return serviceProvider; } /** * Sets the value of the serviceProvider property. * * @param value * allowed object is * {@link String } * */ public void setServiceProvider(String value) { this.serviceProvider = value; } /** * Gets the value of the company property. * * @return * possible object is * {@link String } * */ public String getCompany() { return company; } /** * Sets the value of the company property. * * @param value * allowed object is * {@link String } * */ public void setCompany(String value) { this.company = value; } /** * Gets the value of the owner property. * * @return * possible object is * {@link String } * */ public String getOwner() { return owner; } /** * Sets the value of the owner property. * * @param value * allowed object is * {@link String } * */ public void setOwner(String value) { this.owner = value; } /** * Gets the value of the projectName property. * * @return * possible object is * {@link String } * */ public String getProjectName() { return projectName; } /** * Sets the value of the projectName property. * * @param value * allowed object is * {@link String } * */ public void setProjectName(String value) { this.projectName = value; } /** * Gets the value of the group property. * * @return * possible object is * {@link String } * */ public String getGroup() { return group; } /** * Sets the value of the group property. * * @param value * allowed object is * {@link String } * */ public void setGroup(String value) { this.group = value; } /** * Gets the value of the preset property. * * @return * possible object is * {@link String } * */ public String getPreset() { return preset; } /** * Sets the value of the preset property. * * @param value * allowed object is * {@link String } * */ public void setPreset(String value) { this.preset = value; } /** * Gets the value of the lastScanDate property. * * @return * possible object is * {@link CxDateTime } * */ public CxDateTime getLastScanDate() { return lastScanDate; } /** * Sets the value of the lastScanDate property. * * @param value * allowed object is * {@link CxDateTime } * */ public void setLastScanDate(CxDateTime value) { this.lastScanDate = value; } /** * Gets the value of the totalScans property. * */ public int getTotalScans() { return totalScans; } /** * Sets the value of the totalScans property. * */ public void setTotalScans(int value) { this.totalScans = value; } /** * Gets the value of the isPublic property. * */ public boolean isIsPublic() { return isPublic; } /** * Sets the value of the isPublic property. * */ public void setIsPublic(boolean value) { this.isPublic = value; } /** * Gets the value of the totalOsaScans property. * */ public int getTotalOsaScans() { return totalOsaScans; } /** * Sets the value of the totalOsaScans property. * */ public void setTotalOsaScans(int value) { this.totalOsaScans = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy