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

com.sforce.soap.tooling.ApexLog 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 ApexLog complex type. * *

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

 * <complexType name="ApexLog">
 *   <complexContent>
 *     <extension base="{urn:tooling.soap.sforce.com}sObject">
 *       <sequence>
 *         <element name="Application" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="DurationMilliseconds" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="LastModifiedDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="Location" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="LogLength" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="LogUser" type="{urn:tooling.soap.sforce.com}sObject" minOccurs="0"/>
 *         <element name="LogUserId" type="{urn:tooling.soap.sforce.com}ID" minOccurs="0"/>
 *         <element name="Operation" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Request" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="StartTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="Status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="SystemModstamp" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ApexLog", propOrder = { "application", "durationMilliseconds", "lastModifiedDate", "location", "logLength", "logUser", "logUserId", "operation", "request", "startTime", "status", "systemModstamp" }) public class ApexLog extends SObject { @XmlElement(name = "Application", nillable = true) protected String application; @XmlElement(name = "DurationMilliseconds", nillable = true) protected Integer durationMilliseconds; @XmlElement(name = "LastModifiedDate", nillable = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar lastModifiedDate; @XmlElement(name = "Location", nillable = true) protected String location; @XmlElement(name = "LogLength", nillable = true) protected Integer logLength; @XmlElement(name = "LogUser", nillable = true) protected SObject logUser; @XmlElement(name = "LogUserId", nillable = true) protected String logUserId; @XmlElement(name = "Operation", nillable = true) protected String operation; @XmlElement(name = "Request", nillable = true) protected String request; @XmlElement(name = "StartTime", nillable = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar startTime; @XmlElement(name = "Status", nillable = true) protected String status; @XmlElement(name = "SystemModstamp", nillable = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar systemModstamp; /** * Gets the value of the application property. * * @return * possible object is * {@link String } * */ public String getApplication() { return application; } /** * Sets the value of the application property. * * @param value * allowed object is * {@link String } * */ public void setApplication(String value) { this.application = value; } /** * Gets the value of the durationMilliseconds property. * * @return * possible object is * {@link Integer } * */ public Integer getDurationMilliseconds() { return durationMilliseconds; } /** * Sets the value of the durationMilliseconds property. * * @param value * allowed object is * {@link Integer } * */ public void setDurationMilliseconds(Integer value) { this.durationMilliseconds = 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 location property. * * @return * possible object is * {@link String } * */ public String getLocation() { return location; } /** * Sets the value of the location property. * * @param value * allowed object is * {@link String } * */ public void setLocation(String value) { this.location = value; } /** * Gets the value of the logLength property. * * @return * possible object is * {@link Integer } * */ public Integer getLogLength() { return logLength; } /** * Sets the value of the logLength property. * * @param value * allowed object is * {@link Integer } * */ public void setLogLength(Integer value) { this.logLength = value; } /** * Gets the value of the logUser property. * * @return * possible object is * {@link SObject } * */ public SObject getLogUser() { return logUser; } /** * Sets the value of the logUser property. * * @param value * allowed object is * {@link SObject } * */ public void setLogUser(SObject value) { this.logUser = value; } /** * Gets the value of the logUserId property. * * @return * possible object is * {@link String } * */ public String getLogUserId() { return logUserId; } /** * Sets the value of the logUserId property. * * @param value * allowed object is * {@link String } * */ public void setLogUserId(String value) { this.logUserId = value; } /** * Gets the value of the operation property. * * @return * possible object is * {@link String } * */ public String getOperation() { return operation; } /** * Sets the value of the operation property. * * @param value * allowed object is * {@link String } * */ public void setOperation(String value) { this.operation = value; } /** * Gets the value of the request property. * * @return * possible object is * {@link String } * */ public String getRequest() { return request; } /** * Sets the value of the request property. * * @param value * allowed object is * {@link String } * */ public void setRequest(String value) { this.request = value; } /** * Gets the value of the startTime property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getStartTime() { return startTime; } /** * Sets the value of the startTime property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setStartTime(XMLGregorianCalendar value) { this.startTime = value; } /** * Gets the value of the status property. * * @return * possible object is * {@link String } * */ public String getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link String } * */ public void setStatus(String value) { this.status = 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy