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

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

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

 * <complexType name="ApexClassMember">
 *   <complexContent>
 *     <extension base="{urn:tooling.soap.sforce.com}sObject">
 *       <sequence>
 *         <element name="Body" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Content" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="ContentEntity" type="{urn:tooling.soap.sforce.com}ApexClass" minOccurs="0"/>
 *         <element name="ContentEntityId" type="{urn:tooling.soap.sforce.com}ID" 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="FullName" 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="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="LastSyncDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="Metadata" type="{urn:metadata.tooling.soap.sforce.com}ApexClass" minOccurs="0"/>
 *         <element name="MetadataContainer" type="{urn:tooling.soap.sforce.com}sObject" minOccurs="0"/>
 *         <element name="MetadataContainerId" type="{urn:tooling.soap.sforce.com}ID" minOccurs="0"/>
 *         <element name="SymbolTable" type="{urn:tooling.soap.sforce.com}SymbolTable" minOccurs="0"/>
 *         <element name="SystemModstamp" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ApexClassMember", propOrder = { "body", "content", "contentEntity", "contentEntityId", "createdBy", "createdById", "createdDate", "fullName", "isDeleted", "lastModifiedBy", "lastModifiedById", "lastModifiedDate", "lastSyncDate", "metadata", "metadataContainer", "metadataContainerId", "symbolTable", "systemModstamp" }) public class ApexClassMember extends SObject { @XmlElement(name = "Body", nillable = true) protected String body; @XmlElement(name = "Content", nillable = true) protected String content; @XmlElement(name = "ContentEntity", nillable = true) protected com.sforce.soap.tooling.ApexClass contentEntity; @XmlElement(name = "ContentEntityId", nillable = true) protected String contentEntityId; @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 = "FullName", nillable = true) protected String fullName; @XmlElement(name = "IsDeleted", nillable = true) protected Boolean isDeleted; @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 = "LastSyncDate", nillable = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar lastSyncDate; @XmlElement(name = "Metadata", nillable = true) protected com.sforce.soap.tooling.metadata.ApexClass metadata; @XmlElement(name = "MetadataContainer", nillable = true) protected SObject metadataContainer; @XmlElement(name = "MetadataContainerId", nillable = true) protected String metadataContainerId; @XmlElement(name = "SymbolTable", nillable = true) protected SymbolTable symbolTable; @XmlElement(name = "SystemModstamp", nillable = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar systemModstamp; /** * Gets the value of the body property. * * @return * possible object is * {@link String } * */ public String getBody() { return body; } /** * Sets the value of the body property. * * @param value * allowed object is * {@link String } * */ public void setBody(String value) { this.body = value; } /** * Gets the value of the content property. * * @return * possible object is * {@link String } * */ public String getContent() { return content; } /** * Sets the value of the content property. * * @param value * allowed object is * {@link String } * */ public void setContent(String value) { this.content = value; } /** * Gets the value of the contentEntity property. * * @return * possible object is * {@link com.sforce.soap.tooling.ApexClass } * */ public com.sforce.soap.tooling.ApexClass getContentEntity() { return contentEntity; } /** * Sets the value of the contentEntity property. * * @param value * allowed object is * {@link com.sforce.soap.tooling.ApexClass } * */ public void setContentEntity(com.sforce.soap.tooling.ApexClass value) { this.contentEntity = value; } /** * Gets the value of the contentEntityId property. * * @return * possible object is * {@link String } * */ public String getContentEntityId() { return contentEntityId; } /** * Sets the value of the contentEntityId property. * * @param value * allowed object is * {@link String } * */ public void setContentEntityId(String value) { this.contentEntityId = 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 fullName property. * * @return * possible object is * {@link String } * */ public String getFullName() { return fullName; } /** * Sets the value of the fullName property. * * @param value * allowed object is * {@link String } * */ public void setFullName(String value) { this.fullName = 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 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 lastSyncDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getLastSyncDate() { return lastSyncDate; } /** * Sets the value of the lastSyncDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setLastSyncDate(XMLGregorianCalendar value) { this.lastSyncDate = value; } /** * Gets the value of the metadata property. * * @return * possible object is * {@link com.sforce.soap.tooling.metadata.ApexClass } * */ public com.sforce.soap.tooling.metadata.ApexClass getMetadata() { return metadata; } /** * Sets the value of the metadata property. * * @param value * allowed object is * {@link com.sforce.soap.tooling.metadata.ApexClass } * */ public void setMetadata(com.sforce.soap.tooling.metadata.ApexClass value) { this.metadata = value; } /** * Gets the value of the metadataContainer property. * * @return * possible object is * {@link SObject } * */ public SObject getMetadataContainer() { return metadataContainer; } /** * Sets the value of the metadataContainer property. * * @param value * allowed object is * {@link SObject } * */ public void setMetadataContainer(SObject value) { this.metadataContainer = value; } /** * Gets the value of the metadataContainerId property. * * @return * possible object is * {@link String } * */ public String getMetadataContainerId() { return metadataContainerId; } /** * Sets the value of the metadataContainerId property. * * @param value * allowed object is * {@link String } * */ public void setMetadataContainerId(String value) { this.metadataContainerId = value; } /** * Gets the value of the symbolTable property. * * @return * possible object is * {@link SymbolTable } * */ public SymbolTable getSymbolTable() { return symbolTable; } /** * Sets the value of the symbolTable property. * * @param value * allowed object is * {@link SymbolTable } * */ public void setSymbolTable(SymbolTable value) { this.symbolTable = 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