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

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

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

 * <complexType name="DeployMessage">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="changed" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="columnNumber" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="componentType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="created" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="createdDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 *         <element name="deleted" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="fileName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="fullName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="lineNumber" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="problem" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="problemType" type="{urn:tooling.soap.sforce.com}DeployProblemType" minOccurs="0"/>
 *         <element name="success" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DeployMessage", propOrder = { "changed", "columnNumber", "componentType", "created", "createdDate", "deleted", "fileName", "fullName", "id", "lineNumber", "problem", "problemType", "success" }) public class DeployMessage { protected boolean changed; protected Integer columnNumber; protected String componentType; protected boolean created; @XmlElement(required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar createdDate; protected boolean deleted; @XmlElement(required = true) protected String fileName; @XmlElement(required = true) protected String fullName; protected String id; protected Integer lineNumber; protected String problem; @XmlSchemaType(name = "string") protected DeployProblemType problemType; protected boolean success; /** * Gets the value of the changed property. * */ public boolean isChanged() { return changed; } /** * Sets the value of the changed property. * */ public void setChanged(boolean value) { this.changed = value; } /** * Gets the value of the columnNumber property. * * @return * possible object is * {@link Integer } * */ public Integer getColumnNumber() { return columnNumber; } /** * Sets the value of the columnNumber property. * * @param value * allowed object is * {@link Integer } * */ public void setColumnNumber(Integer value) { this.columnNumber = value; } /** * Gets the value of the componentType property. * * @return * possible object is * {@link String } * */ public String getComponentType() { return componentType; } /** * Sets the value of the componentType property. * * @param value * allowed object is * {@link String } * */ public void setComponentType(String value) { this.componentType = value; } /** * Gets the value of the created property. * */ public boolean isCreated() { return created; } /** * Sets the value of the created property. * */ public void setCreated(boolean value) { this.created = 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 deleted property. * */ public boolean isDeleted() { return deleted; } /** * Sets the value of the deleted property. * */ public void setDeleted(boolean value) { this.deleted = value; } /** * Gets the value of the fileName property. * * @return * possible object is * {@link String } * */ public String getFileName() { return fileName; } /** * Sets the value of the fileName property. * * @param value * allowed object is * {@link String } * */ public void setFileName(String value) { this.fileName = 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 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 lineNumber property. * * @return * possible object is * {@link Integer } * */ public Integer getLineNumber() { return lineNumber; } /** * Sets the value of the lineNumber property. * * @param value * allowed object is * {@link Integer } * */ public void setLineNumber(Integer value) { this.lineNumber = value; } /** * Gets the value of the problem property. * * @return * possible object is * {@link String } * */ public String getProblem() { return problem; } /** * Sets the value of the problem property. * * @param value * allowed object is * {@link String } * */ public void setProblem(String value) { this.problem = value; } /** * Gets the value of the problemType property. * * @return * possible object is * {@link DeployProblemType } * */ public DeployProblemType getProblemType() { return problemType; } /** * Sets the value of the problemType property. * * @param value * allowed object is * {@link DeployProblemType } * */ public void setProblemType(DeployProblemType value) { this.problemType = value; } /** * Gets the value of the success property. * */ public boolean isSuccess() { return success; } /** * Sets the value of the success property. * */ public void setSuccess(boolean value) { this.success = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy