checkmarx.wsdl.portal.CxPivotLayout 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 CxPivotLayout complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CxPivotLayout">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Id" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Owner" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="SerializedData" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="ChartType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="IsSystem" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="Owner_Team" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="IsPublic" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="ViewId" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="Teams" type="{http://Checkmarx.com}ArrayOfString" minOccurs="0"/>
* <element name="Criteria" type="{http://Checkmarx.com}ArrayOfPivotClientBaseParam" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CxPivotLayout", propOrder = {
"id",
"name",
"owner",
"serializedData",
"chartType",
"isSystem",
"ownerTeam",
"isPublic",
"viewId",
"teams",
"criteria"
})
public class CxPivotLayout {
@XmlElement(name = "Id")
protected long id;
@XmlElement(name = "Name")
protected String name;
@XmlElement(name = "Owner")
protected long owner;
@XmlElement(name = "SerializedData")
protected String serializedData;
@XmlElement(name = "ChartType")
protected String chartType;
@XmlElement(name = "IsSystem")
protected boolean isSystem;
@XmlElement(name = "Owner_Team")
protected String ownerTeam;
@XmlElement(name = "IsPublic")
protected boolean isPublic;
@XmlElement(name = "ViewId")
protected long viewId;
@XmlElement(name = "Teams")
protected ArrayOfString teams;
@XmlElement(name = "Criteria")
protected ArrayOfPivotClientBaseParam criteria;
/**
* Gets the value of the id property.
*
*/
public long getId() {
return id;
}
/**
* Sets the value of the id property.
*
*/
public void setId(long 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 owner property.
*
*/
public long getOwner() {
return owner;
}
/**
* Sets the value of the owner property.
*
*/
public void setOwner(long value) {
this.owner = value;
}
/**
* Gets the value of the serializedData property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSerializedData() {
return serializedData;
}
/**
* Sets the value of the serializedData property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSerializedData(String value) {
this.serializedData = value;
}
/**
* Gets the value of the chartType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getChartType() {
return chartType;
}
/**
* Sets the value of the chartType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setChartType(String value) {
this.chartType = value;
}
/**
* Gets the value of the isSystem property.
*
*/
public boolean isIsSystem() {
return isSystem;
}
/**
* Sets the value of the isSystem property.
*
*/
public void setIsSystem(boolean value) {
this.isSystem = value;
}
/**
* Gets the value of the ownerTeam property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOwnerTeam() {
return ownerTeam;
}
/**
* Sets the value of the ownerTeam property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOwnerTeam(String value) {
this.ownerTeam = 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 viewId property.
*
*/
public long getViewId() {
return viewId;
}
/**
* Sets the value of the viewId property.
*
*/
public void setViewId(long value) {
this.viewId = value;
}
/**
* Gets the value of the teams property.
*
* @return
* possible object is
* {@link ArrayOfString }
*
*/
public ArrayOfString getTeams() {
return teams;
}
/**
* Sets the value of the teams property.
*
* @param value
* allowed object is
* {@link ArrayOfString }
*
*/
public void setTeams(ArrayOfString value) {
this.teams = value;
}
/**
* Gets the value of the criteria property.
*
* @return
* possible object is
* {@link ArrayOfPivotClientBaseParam }
*
*/
public ArrayOfPivotClientBaseParam getCriteria() {
return criteria;
}
/**
* Sets the value of the criteria property.
*
* @param value
* allowed object is
* {@link ArrayOfPivotClientBaseParam }
*
*/
public void setCriteria(ArrayOfPivotClientBaseParam value) {
this.criteria = value;
}
}