checkmarx.wsdl.portal.Group 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.*;
/**
* Java class for Group complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Group">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="GroupName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="ID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Type" type="{http://Checkmarx.com}GroupType"/>
* <element name="Guid" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="FullPath" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Path" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Group", propOrder = {
"groupName",
"id",
"type",
"guid",
"fullPath",
"path"
})
@XmlSeeAlso({
HierarchyGroupNode.class
})
public class Group {
@XmlElement(name = "GroupName")
protected String groupName;
@XmlElement(name = "ID")
protected String id;
@XmlElement(name = "Type", required = true)
protected GroupType type;
@XmlElement(name = "Guid")
protected String guid;
@XmlElement(name = "FullPath")
protected String fullPath;
@XmlElement(name = "Path")
protected String path;
/**
* Gets the value of the groupName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getGroupName() {
return groupName;
}
/**
* Sets the value of the groupName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setGroupName(String value) {
this.groupName = value;
}
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getID() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setID(String value) {
this.id = value;
}
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link GroupType }
*
*/
public GroupType getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link GroupType }
*
*/
public void setType(GroupType value) {
this.type = value;
}
/**
* Gets the value of the guid property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getGuid() {
return guid;
}
/**
* Sets the value of the guid property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setGuid(String value) {
this.guid = value;
}
/**
* Gets the value of the fullPath property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFullPath() {
return fullPath;
}
/**
* Sets the value of the fullPath property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFullPath(String value) {
this.fullPath = value;
}
/**
* Gets the value of the path property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPath() {
return path;
}
/**
* Sets the value of the path property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPath(String value) {
this.path = value;
}
}