![JAR search and dependency download from the Maven repository](/logo.png)
com.sforce.soap.tooling.DebuggingHeader Maven / Gradle / Ivy
Show all versions of sforce-tooling-api Show documentation
package com.sforce.soap.tooling;
import java.util.ArrayList;
import java.util.List;
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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="categories" type="{urn:tooling.soap.sforce.com}LogInfo" maxOccurs="unbounded" minOccurs="0"/>
* <element name="debugLevel" type="{urn:tooling.soap.sforce.com}LogType"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"categories",
"debugLevel"
})
@XmlRootElement(name = "DebuggingHeader")
public class DebuggingHeader {
protected List categories;
@XmlElement(required = true)
@XmlSchemaType(name = "string")
protected LogType debugLevel;
/**
* Gets the value of the categories property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the categories property.
*
*
* For example, to add a new item, do as follows:
*
* getCategories().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link LogInfo }
*
*
*/
public List getCategories() {
if (categories == null) {
categories = new ArrayList();
}
return this.categories;
}
/**
* Gets the value of the debugLevel property.
*
* @return
* possible object is
* {@link LogType }
*
*/
public LogType getDebugLevel() {
return debugLevel;
}
/**
* Sets the value of the debugLevel property.
*
* @param value
* allowed object is
* {@link LogType }
*
*/
public void setDebugLevel(LogType value) {
this.debugLevel = value;
}
}