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

com.palominolabs.crm.sf.soap.jaxwsstub.metadata.AsyncResult Maven / Gradle / Ivy

The newest version!

package com.palominolabs.crm.sf.soap.jaxwsstub.metadata;

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 AsyncResult complex type. * *

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

 * <complexType name="AsyncResult">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="checkOnly" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="done" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="id" type="{http://soap.sforce.com/2006/04/metadata}ID"/>
 *         <element name="message" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="numberComponentErrors" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="numberComponentsDeployed" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="numberComponentsTotal" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="numberTestErrors" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="numberTestsCompleted" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="numberTestsTotal" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="state" type="{http://soap.sforce.com/2006/04/metadata}AsyncRequestState"/>
 *         <element name="stateDetail" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="stateDetailLastModifiedDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="statusCode" type="{http://soap.sforce.com/2006/04/metadata}StatusCode" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AsyncResult", propOrder = { "checkOnly", "done", "id", "message", "numberComponentErrors", "numberComponentsDeployed", "numberComponentsTotal", "numberTestErrors", "numberTestsCompleted", "numberTestsTotal", "state", "stateDetail", "stateDetailLastModifiedDate", "statusCode" }) public class AsyncResult { protected Boolean checkOnly; protected boolean done; @XmlElement(required = true) protected String id; protected String message; protected Integer numberComponentErrors; protected Integer numberComponentsDeployed; protected Integer numberComponentsTotal; protected Integer numberTestErrors; protected Integer numberTestsCompleted; protected Integer numberTestsTotal; @XmlElement(required = true) protected AsyncRequestState state; protected String stateDetail; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar stateDetailLastModifiedDate; protected StatusCode statusCode; /** * Gets the value of the checkOnly property. * * @return * possible object is * {@link Boolean } * */ public Boolean isCheckOnly() { return checkOnly; } /** * Sets the value of the checkOnly property. * * @param value * allowed object is * {@link Boolean } * */ public void setCheckOnly(Boolean value) { this.checkOnly = value; } /** * Gets the value of the done property. * */ public boolean isDone() { return done; } /** * Sets the value of the done property. * */ public void setDone(boolean value) { this.done = 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 message property. * * @return * possible object is * {@link String } * */ public String getMessage() { return message; } /** * Sets the value of the message property. * * @param value * allowed object is * {@link String } * */ public void setMessage(String value) { this.message = value; } /** * Gets the value of the numberComponentErrors property. * * @return * possible object is * {@link Integer } * */ public Integer getNumberComponentErrors() { return numberComponentErrors; } /** * Sets the value of the numberComponentErrors property. * * @param value * allowed object is * {@link Integer } * */ public void setNumberComponentErrors(Integer value) { this.numberComponentErrors = value; } /** * Gets the value of the numberComponentsDeployed property. * * @return * possible object is * {@link Integer } * */ public Integer getNumberComponentsDeployed() { return numberComponentsDeployed; } /** * Sets the value of the numberComponentsDeployed property. * * @param value * allowed object is * {@link Integer } * */ public void setNumberComponentsDeployed(Integer value) { this.numberComponentsDeployed = value; } /** * Gets the value of the numberComponentsTotal property. * * @return * possible object is * {@link Integer } * */ public Integer getNumberComponentsTotal() { return numberComponentsTotal; } /** * Sets the value of the numberComponentsTotal property. * * @param value * allowed object is * {@link Integer } * */ public void setNumberComponentsTotal(Integer value) { this.numberComponentsTotal = value; } /** * Gets the value of the numberTestErrors property. * * @return * possible object is * {@link Integer } * */ public Integer getNumberTestErrors() { return numberTestErrors; } /** * Sets the value of the numberTestErrors property. * * @param value * allowed object is * {@link Integer } * */ public void setNumberTestErrors(Integer value) { this.numberTestErrors = value; } /** * Gets the value of the numberTestsCompleted property. * * @return * possible object is * {@link Integer } * */ public Integer getNumberTestsCompleted() { return numberTestsCompleted; } /** * Sets the value of the numberTestsCompleted property. * * @param value * allowed object is * {@link Integer } * */ public void setNumberTestsCompleted(Integer value) { this.numberTestsCompleted = value; } /** * Gets the value of the numberTestsTotal property. * * @return * possible object is * {@link Integer } * */ public Integer getNumberTestsTotal() { return numberTestsTotal; } /** * Sets the value of the numberTestsTotal property. * * @param value * allowed object is * {@link Integer } * */ public void setNumberTestsTotal(Integer value) { this.numberTestsTotal = value; } /** * Gets the value of the state property. * * @return * possible object is * {@link AsyncRequestState } * */ public AsyncRequestState getState() { return state; } /** * Sets the value of the state property. * * @param value * allowed object is * {@link AsyncRequestState } * */ public void setState(AsyncRequestState value) { this.state = value; } /** * Gets the value of the stateDetail property. * * @return * possible object is * {@link String } * */ public String getStateDetail() { return stateDetail; } /** * Sets the value of the stateDetail property. * * @param value * allowed object is * {@link String } * */ public void setStateDetail(String value) { this.stateDetail = value; } /** * Gets the value of the stateDetailLastModifiedDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getStateDetailLastModifiedDate() { return stateDetailLastModifiedDate; } /** * Sets the value of the stateDetailLastModifiedDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setStateDetailLastModifiedDate(XMLGregorianCalendar value) { this.stateDetailLastModifiedDate = value; } /** * Gets the value of the statusCode property. * * @return * possible object is * {@link StatusCode } * */ public StatusCode getStatusCode() { return statusCode; } /** * Sets the value of the statusCode property. * * @param value * allowed object is * {@link StatusCode } * */ public void setStatusCode(StatusCode value) { this.statusCode = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy