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

com.sforce.soap.tooling.DebugLevel Maven / Gradle / Ivy

The newest version!

package com.sforce.soap.tooling;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for DebugLevel complex type. * *

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

 * <complexType name="DebugLevel">
 *   <complexContent>
 *     <extension base="{urn:tooling.soap.sforce.com}sObject">
 *       <sequence>
 *         <element name="ApexCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="ApexProfiling" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Callout" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="CreatedBy" type="{urn:tooling.soap.sforce.com}User" minOccurs="0"/>
 *         <element name="CreatedById" type="{urn:tooling.soap.sforce.com}ID" minOccurs="0"/>
 *         <element name="CreatedDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="Database" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="DeveloperName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="IsDeleted" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="Language" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="LastModifiedBy" type="{urn:tooling.soap.sforce.com}User" minOccurs="0"/>
 *         <element name="LastModifiedById" type="{urn:tooling.soap.sforce.com}ID" minOccurs="0"/>
 *         <element name="LastModifiedDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="MasterLabel" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="System" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="SystemModstamp" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="Validation" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Visualforce" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Workflow" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DebugLevel", propOrder = { "apexCode", "apexProfiling", "callout", "createdBy", "createdById", "createdDate", "database", "developerName", "isDeleted", "language", "lastModifiedBy", "lastModifiedById", "lastModifiedDate", "masterLabel", "system", "systemModstamp", "validation", "visualforce", "workflow" }) public class DebugLevel extends SObject { @XmlElement(name = "ApexCode", nillable = true) protected String apexCode; @XmlElement(name = "ApexProfiling", nillable = true) protected String apexProfiling; @XmlElement(name = "Callout", nillable = true) protected String callout; @XmlElement(name = "CreatedBy", nillable = true) protected User createdBy; @XmlElement(name = "CreatedById", nillable = true) protected String createdById; @XmlElement(name = "CreatedDate", nillable = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar createdDate; @XmlElement(name = "Database", nillable = true) protected String database; @XmlElement(name = "DeveloperName", nillable = true) protected String developerName; @XmlElement(name = "IsDeleted", nillable = true) protected Boolean isDeleted; @XmlElement(name = "Language", nillable = true) protected String language; @XmlElement(name = "LastModifiedBy", nillable = true) protected User lastModifiedBy; @XmlElement(name = "LastModifiedById", nillable = true) protected String lastModifiedById; @XmlElement(name = "LastModifiedDate", nillable = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar lastModifiedDate; @XmlElement(name = "MasterLabel", nillable = true) protected String masterLabel; @XmlElement(name = "System", nillable = true) protected String system; @XmlElement(name = "SystemModstamp", nillable = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar systemModstamp; @XmlElement(name = "Validation", nillable = true) protected String validation; @XmlElement(name = "Visualforce", nillable = true) protected String visualforce; @XmlElement(name = "Workflow", nillable = true) protected String workflow; /** * Gets the value of the apexCode property. * * @return * possible object is * {@link String } * */ public String getApexCode() { return apexCode; } /** * Sets the value of the apexCode property. * * @param value * allowed object is * {@link String } * */ public void setApexCode(String value) { this.apexCode = value; } /** * Gets the value of the apexProfiling property. * * @return * possible object is * {@link String } * */ public String getApexProfiling() { return apexProfiling; } /** * Sets the value of the apexProfiling property. * * @param value * allowed object is * {@link String } * */ public void setApexProfiling(String value) { this.apexProfiling = value; } /** * Gets the value of the callout property. * * @return * possible object is * {@link String } * */ public String getCallout() { return callout; } /** * Sets the value of the callout property. * * @param value * allowed object is * {@link String } * */ public void setCallout(String value) { this.callout = value; } /** * Gets the value of the createdBy property. * * @return * possible object is * {@link User } * */ public User getCreatedBy() { return createdBy; } /** * Sets the value of the createdBy property. * * @param value * allowed object is * {@link User } * */ public void setCreatedBy(User value) { this.createdBy = value; } /** * Gets the value of the createdById property. * * @return * possible object is * {@link String } * */ public String getCreatedById() { return createdById; } /** * Sets the value of the createdById property. * * @param value * allowed object is * {@link String } * */ public void setCreatedById(String value) { this.createdById = value; } /** * Gets the value of the createdDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getCreatedDate() { return createdDate; } /** * Sets the value of the createdDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setCreatedDate(XMLGregorianCalendar value) { this.createdDate = value; } /** * Gets the value of the database property. * * @return * possible object is * {@link String } * */ public String getDatabase() { return database; } /** * Sets the value of the database property. * * @param value * allowed object is * {@link String } * */ public void setDatabase(String value) { this.database = value; } /** * Gets the value of the developerName property. * * @return * possible object is * {@link String } * */ public String getDeveloperName() { return developerName; } /** * Sets the value of the developerName property. * * @param value * allowed object is * {@link String } * */ public void setDeveloperName(String value) { this.developerName = value; } /** * Gets the value of the isDeleted property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIsDeleted() { return isDeleted; } /** * Sets the value of the isDeleted property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsDeleted(Boolean value) { this.isDeleted = value; } /** * Gets the value of the language property. * * @return * possible object is * {@link String } * */ public String getLanguage() { return language; } /** * Sets the value of the language property. * * @param value * allowed object is * {@link String } * */ public void setLanguage(String value) { this.language = value; } /** * Gets the value of the lastModifiedBy property. * * @return * possible object is * {@link User } * */ public User getLastModifiedBy() { return lastModifiedBy; } /** * Sets the value of the lastModifiedBy property. * * @param value * allowed object is * {@link User } * */ public void setLastModifiedBy(User value) { this.lastModifiedBy = value; } /** * Gets the value of the lastModifiedById property. * * @return * possible object is * {@link String } * */ public String getLastModifiedById() { return lastModifiedById; } /** * Sets the value of the lastModifiedById property. * * @param value * allowed object is * {@link String } * */ public void setLastModifiedById(String value) { this.lastModifiedById = value; } /** * Gets the value of the lastModifiedDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getLastModifiedDate() { return lastModifiedDate; } /** * Sets the value of the lastModifiedDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setLastModifiedDate(XMLGregorianCalendar value) { this.lastModifiedDate = value; } /** * Gets the value of the masterLabel property. * * @return * possible object is * {@link String } * */ public String getMasterLabel() { return masterLabel; } /** * Sets the value of the masterLabel property. * * @param value * allowed object is * {@link String } * */ public void setMasterLabel(String value) { this.masterLabel = value; } /** * Gets the value of the system property. * * @return * possible object is * {@link String } * */ public String getSystem() { return system; } /** * Sets the value of the system property. * * @param value * allowed object is * {@link String } * */ public void setSystem(String value) { this.system = value; } /** * Gets the value of the systemModstamp property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getSystemModstamp() { return systemModstamp; } /** * Sets the value of the systemModstamp property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setSystemModstamp(XMLGregorianCalendar value) { this.systemModstamp = value; } /** * Gets the value of the validation property. * * @return * possible object is * {@link String } * */ public String getValidation() { return validation; } /** * Sets the value of the validation property. * * @param value * allowed object is * {@link String } * */ public void setValidation(String value) { this.validation = value; } /** * Gets the value of the visualforce property. * * @return * possible object is * {@link String } * */ public String getVisualforce() { return visualforce; } /** * Sets the value of the visualforce property. * * @param value * allowed object is * {@link String } * */ public void setVisualforce(String value) { this.visualforce = value; } /** * Gets the value of the workflow property. * * @return * possible object is * {@link String } * */ public String getWorkflow() { return workflow; } /** * Sets the value of the workflow property. * * @param value * allowed object is * {@link String } * */ public void setWorkflow(String value) { this.workflow = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy