470 lines
22 KiB
Java
470 lines
22 KiB
Java
package com.sforce.soap.tooling.metadata;
|
|
|
|
/**
|
|
* This is a generated class for the SObject Enterprise API.
|
|
* Do not edit this file, as your changes will be lost.
|
|
*/
|
|
public class BatchProcessJobDefinition extends com.sforce.soap.tooling.metadata.Metadata {
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
public BatchProcessJobDefinition() {}
|
|
|
|
/* Cache the typeInfo instead of declaring static fields throughout*/
|
|
private transient java.util.Map<String, com.sforce.ws.bind.TypeInfo> typeInfoCache = new java.util.HashMap<String, com.sforce.ws.bind.TypeInfo>();
|
|
private com.sforce.ws.bind.TypeInfo _lookupTypeInfo(String fieldName, String namespace, String name, String typeNS, String type, int minOcc, int maxOcc, boolean elementForm) {
|
|
com.sforce.ws.bind.TypeInfo typeInfo = typeInfoCache.get(fieldName);
|
|
if (typeInfo == null) {
|
|
typeInfo = new com.sforce.ws.bind.TypeInfo(namespace, name, typeNS, type, minOcc, maxOcc, elementForm);
|
|
typeInfoCache.put(fieldName, typeInfo);
|
|
}
|
|
return typeInfo;
|
|
}
|
|
|
|
/**
|
|
* element : batchSize of type {http://www.w3.org/2001/XMLSchema}int
|
|
* java type: int
|
|
*/
|
|
private boolean batchSize__is_set = false;
|
|
|
|
private int batchSize;
|
|
|
|
public int getBatchSize() {
|
|
return batchSize;
|
|
}
|
|
|
|
public void setBatchSize(int batchSize) {
|
|
this.batchSize = batchSize;
|
|
batchSize__is_set = true;
|
|
}
|
|
|
|
protected void setBatchSize(com.sforce.ws.parser.XmlInputStream __in,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
|
|
__in.peekTag();
|
|
if (__typeMapper.verifyElement(__in, _lookupTypeInfo("batchSize", "urn:metadata.tooling.soap.sforce.com","batchSize","http://www.w3.org/2001/XMLSchema","int",1,1,true))) {
|
|
setBatchSize((int)__typeMapper.readInt(__in, _lookupTypeInfo("batchSize", "urn:metadata.tooling.soap.sforce.com","batchSize","http://www.w3.org/2001/XMLSchema","int",1,1,true), int.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldBatchSize(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("batchSize", "urn:metadata.tooling.soap.sforce.com","batchSize","http://www.w3.org/2001/XMLSchema","int",1,1,true), batchSize, batchSize__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : dataSource of type {urn:metadata.tooling.soap.sforce.com}BatchDataSource
|
|
* java type: com.sforce.soap.tooling.metadata.BatchDataSource
|
|
*/
|
|
private boolean dataSource__is_set = false;
|
|
|
|
private com.sforce.soap.tooling.metadata.BatchDataSource dataSource;
|
|
|
|
public com.sforce.soap.tooling.metadata.BatchDataSource getDataSource() {
|
|
return dataSource;
|
|
}
|
|
|
|
public void setDataSource(com.sforce.soap.tooling.metadata.BatchDataSource dataSource) {
|
|
this.dataSource = dataSource;
|
|
dataSource__is_set = true;
|
|
}
|
|
|
|
protected void setDataSource(com.sforce.ws.parser.XmlInputStream __in,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
|
|
__in.peekTag();
|
|
if (__typeMapper.verifyElement(__in, _lookupTypeInfo("dataSource", "urn:metadata.tooling.soap.sforce.com","dataSource","urn:metadata.tooling.soap.sforce.com","BatchDataSource",1,1,true))) {
|
|
setDataSource((com.sforce.soap.tooling.metadata.BatchDataSource)__typeMapper.readObject(__in, _lookupTypeInfo("dataSource", "urn:metadata.tooling.soap.sforce.com","dataSource","urn:metadata.tooling.soap.sforce.com","BatchDataSource",1,1,true), com.sforce.soap.tooling.metadata.BatchDataSource.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldDataSource(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("dataSource", "urn:metadata.tooling.soap.sforce.com","dataSource","urn:metadata.tooling.soap.sforce.com","BatchDataSource",1,1,true), dataSource, dataSource__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : description of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean description__is_set = false;
|
|
|
|
private java.lang.String description;
|
|
|
|
public java.lang.String getDescription() {
|
|
return description;
|
|
}
|
|
|
|
public void setDescription(java.lang.String description) {
|
|
this.description = description;
|
|
description__is_set = true;
|
|
}
|
|
|
|
protected void setDescription(com.sforce.ws.parser.XmlInputStream __in,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
|
|
__in.peekTag();
|
|
if (__typeMapper.isElement(__in, _lookupTypeInfo("description", "urn:metadata.tooling.soap.sforce.com","description","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
|
setDescription(__typeMapper.readString(__in, _lookupTypeInfo("description", "urn:metadata.tooling.soap.sforce.com","description","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldDescription(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("description", "urn:metadata.tooling.soap.sforce.com","description","http://www.w3.org/2001/XMLSchema","string",0,1,true), description, description__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : executionProcessApiName of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean executionProcessApiName__is_set = false;
|
|
|
|
private java.lang.String executionProcessApiName;
|
|
|
|
public java.lang.String getExecutionProcessApiName() {
|
|
return executionProcessApiName;
|
|
}
|
|
|
|
public void setExecutionProcessApiName(java.lang.String executionProcessApiName) {
|
|
this.executionProcessApiName = executionProcessApiName;
|
|
executionProcessApiName__is_set = true;
|
|
}
|
|
|
|
protected void setExecutionProcessApiName(com.sforce.ws.parser.XmlInputStream __in,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
|
|
__in.peekTag();
|
|
if (__typeMapper.isElement(__in, _lookupTypeInfo("executionProcessApiName", "urn:metadata.tooling.soap.sforce.com","executionProcessApiName","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
|
setExecutionProcessApiName(__typeMapper.readString(__in, _lookupTypeInfo("executionProcessApiName", "urn:metadata.tooling.soap.sforce.com","executionProcessApiName","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldExecutionProcessApiName(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("executionProcessApiName", "urn:metadata.tooling.soap.sforce.com","executionProcessApiName","http://www.w3.org/2001/XMLSchema","string",0,1,true), executionProcessApiName, executionProcessApiName__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : flowApiName of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean flowApiName__is_set = false;
|
|
|
|
private java.lang.String flowApiName;
|
|
|
|
public java.lang.String getFlowApiName() {
|
|
return flowApiName;
|
|
}
|
|
|
|
public void setFlowApiName(java.lang.String flowApiName) {
|
|
this.flowApiName = flowApiName;
|
|
flowApiName__is_set = true;
|
|
}
|
|
|
|
protected void setFlowApiName(com.sforce.ws.parser.XmlInputStream __in,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
|
|
__in.peekTag();
|
|
if (__typeMapper.isElement(__in, _lookupTypeInfo("flowApiName", "urn:metadata.tooling.soap.sforce.com","flowApiName","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
|
setFlowApiName(__typeMapper.readString(__in, _lookupTypeInfo("flowApiName", "urn:metadata.tooling.soap.sforce.com","flowApiName","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldFlowApiName(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("flowApiName", "urn:metadata.tooling.soap.sforce.com","flowApiName","http://www.w3.org/2001/XMLSchema","string",0,1,true), flowApiName, flowApiName__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : flowInputVariable of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean flowInputVariable__is_set = false;
|
|
|
|
private java.lang.String flowInputVariable;
|
|
|
|
public java.lang.String getFlowInputVariable() {
|
|
return flowInputVariable;
|
|
}
|
|
|
|
public void setFlowInputVariable(java.lang.String flowInputVariable) {
|
|
this.flowInputVariable = flowInputVariable;
|
|
flowInputVariable__is_set = true;
|
|
}
|
|
|
|
protected void setFlowInputVariable(com.sforce.ws.parser.XmlInputStream __in,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
|
|
__in.peekTag();
|
|
if (__typeMapper.isElement(__in, _lookupTypeInfo("flowInputVariable", "urn:metadata.tooling.soap.sforce.com","flowInputVariable","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
|
setFlowInputVariable(__typeMapper.readString(__in, _lookupTypeInfo("flowInputVariable", "urn:metadata.tooling.soap.sforce.com","flowInputVariable","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldFlowInputVariable(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("flowInputVariable", "urn:metadata.tooling.soap.sforce.com","flowInputVariable","http://www.w3.org/2001/XMLSchema","string",0,1,true), flowInputVariable, flowInputVariable__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : masterLabel of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean masterLabel__is_set = false;
|
|
|
|
private java.lang.String masterLabel;
|
|
|
|
public java.lang.String getMasterLabel() {
|
|
return masterLabel;
|
|
}
|
|
|
|
public void setMasterLabel(java.lang.String masterLabel) {
|
|
this.masterLabel = masterLabel;
|
|
masterLabel__is_set = true;
|
|
}
|
|
|
|
protected void setMasterLabel(com.sforce.ws.parser.XmlInputStream __in,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
|
|
__in.peekTag();
|
|
if (__typeMapper.verifyElement(__in, _lookupTypeInfo("masterLabel", "urn:metadata.tooling.soap.sforce.com","masterLabel","http://www.w3.org/2001/XMLSchema","string",1,1,true))) {
|
|
setMasterLabel(__typeMapper.readString(__in, _lookupTypeInfo("masterLabel", "urn:metadata.tooling.soap.sforce.com","masterLabel","http://www.w3.org/2001/XMLSchema","string",1,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldMasterLabel(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("masterLabel", "urn:metadata.tooling.soap.sforce.com","masterLabel","http://www.w3.org/2001/XMLSchema","string",1,1,true), masterLabel, masterLabel__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : processGroup of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean processGroup__is_set = false;
|
|
|
|
private java.lang.String processGroup;
|
|
|
|
public java.lang.String getProcessGroup() {
|
|
return processGroup;
|
|
}
|
|
|
|
public void setProcessGroup(java.lang.String processGroup) {
|
|
this.processGroup = processGroup;
|
|
processGroup__is_set = true;
|
|
}
|
|
|
|
protected void setProcessGroup(com.sforce.ws.parser.XmlInputStream __in,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
|
|
__in.peekTag();
|
|
if (__typeMapper.verifyElement(__in, _lookupTypeInfo("processGroup", "urn:metadata.tooling.soap.sforce.com","processGroup","http://www.w3.org/2001/XMLSchema","string",1,1,true))) {
|
|
setProcessGroup(__typeMapper.readString(__in, _lookupTypeInfo("processGroup", "urn:metadata.tooling.soap.sforce.com","processGroup","http://www.w3.org/2001/XMLSchema","string",1,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldProcessGroup(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("processGroup", "urn:metadata.tooling.soap.sforce.com","processGroup","http://www.w3.org/2001/XMLSchema","string",1,1,true), processGroup, processGroup__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : retryCount of type {http://www.w3.org/2001/XMLSchema}int
|
|
* java type: int
|
|
*/
|
|
private boolean retryCount__is_set = false;
|
|
|
|
private int retryCount;
|
|
|
|
public int getRetryCount() {
|
|
return retryCount;
|
|
}
|
|
|
|
public void setRetryCount(int retryCount) {
|
|
this.retryCount = retryCount;
|
|
retryCount__is_set = true;
|
|
}
|
|
|
|
protected void setRetryCount(com.sforce.ws.parser.XmlInputStream __in,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
|
|
__in.peekTag();
|
|
if (__typeMapper.verifyElement(__in, _lookupTypeInfo("retryCount", "urn:metadata.tooling.soap.sforce.com","retryCount","http://www.w3.org/2001/XMLSchema","int",1,1,true))) {
|
|
setRetryCount((int)__typeMapper.readInt(__in, _lookupTypeInfo("retryCount", "urn:metadata.tooling.soap.sforce.com","retryCount","http://www.w3.org/2001/XMLSchema","int",1,1,true), int.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldRetryCount(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("retryCount", "urn:metadata.tooling.soap.sforce.com","retryCount","http://www.w3.org/2001/XMLSchema","int",1,1,true), retryCount, retryCount__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : retryInterval of type {http://www.w3.org/2001/XMLSchema}int
|
|
* java type: int
|
|
*/
|
|
private boolean retryInterval__is_set = false;
|
|
|
|
private int retryInterval;
|
|
|
|
public int getRetryInterval() {
|
|
return retryInterval;
|
|
}
|
|
|
|
public void setRetryInterval(int retryInterval) {
|
|
this.retryInterval = retryInterval;
|
|
retryInterval__is_set = true;
|
|
}
|
|
|
|
protected void setRetryInterval(com.sforce.ws.parser.XmlInputStream __in,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
|
|
__in.peekTag();
|
|
if (__typeMapper.verifyElement(__in, _lookupTypeInfo("retryInterval", "urn:metadata.tooling.soap.sforce.com","retryInterval","http://www.w3.org/2001/XMLSchema","int",1,1,true))) {
|
|
setRetryInterval((int)__typeMapper.readInt(__in, _lookupTypeInfo("retryInterval", "urn:metadata.tooling.soap.sforce.com","retryInterval","http://www.w3.org/2001/XMLSchema","int",1,1,true), int.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldRetryInterval(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("retryInterval", "urn:metadata.tooling.soap.sforce.com","retryInterval","http://www.w3.org/2001/XMLSchema","int",1,1,true), retryInterval, retryInterval__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : status of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean status__is_set = false;
|
|
|
|
private java.lang.String status;
|
|
|
|
public java.lang.String getStatus() {
|
|
return status;
|
|
}
|
|
|
|
public void setStatus(java.lang.String status) {
|
|
this.status = status;
|
|
status__is_set = true;
|
|
}
|
|
|
|
protected void setStatus(com.sforce.ws.parser.XmlInputStream __in,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
|
|
__in.peekTag();
|
|
if (__typeMapper.isElement(__in, _lookupTypeInfo("status", "urn:metadata.tooling.soap.sforce.com","status","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
|
setStatus(__typeMapper.readString(__in, _lookupTypeInfo("status", "urn:metadata.tooling.soap.sforce.com","status","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldStatus(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("status", "urn:metadata.tooling.soap.sforce.com","status","http://www.w3.org/2001/XMLSchema","string",0,1,true), status, status__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : type of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean type__is_set = false;
|
|
|
|
private java.lang.String type;
|
|
|
|
public java.lang.String getType() {
|
|
return type;
|
|
}
|
|
|
|
public void setType(java.lang.String type) {
|
|
this.type = type;
|
|
type__is_set = true;
|
|
}
|
|
|
|
protected void setType(com.sforce.ws.parser.XmlInputStream __in,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
|
|
__in.peekTag();
|
|
if (__typeMapper.isElement(__in, _lookupTypeInfo("type", "urn:metadata.tooling.soap.sforce.com","type","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
|
setType(__typeMapper.readString(__in, _lookupTypeInfo("type", "urn:metadata.tooling.soap.sforce.com","type","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldType(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("type", "urn:metadata.tooling.soap.sforce.com","type","http://www.w3.org/2001/XMLSchema","string",0,1,true), type, type__is_set);
|
|
}
|
|
|
|
/**
|
|
*/
|
|
@Override
|
|
public void write(javax.xml.namespace.QName __element,
|
|
com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper)
|
|
throws java.io.IOException {
|
|
__out.writeStartTag(__element.getNamespaceURI(), __element.getLocalPart());
|
|
__typeMapper.writeXsiType(__out, "urn:metadata.tooling.soap.sforce.com", "BatchProcessJobDefinition");
|
|
writeFields(__out, __typeMapper);
|
|
__out.writeEndTag(__element.getNamespaceURI(), __element.getLocalPart());
|
|
}
|
|
|
|
protected void writeFields(com.sforce.ws.parser.XmlOutputStream __out,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper)
|
|
throws java.io.IOException {
|
|
super.writeFields(__out, __typeMapper);
|
|
writeFields1(__out, __typeMapper);
|
|
}
|
|
|
|
@Override
|
|
public void load(com.sforce.ws.parser.XmlInputStream __in,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
|
|
__typeMapper.consumeStartTag(__in);
|
|
loadFields(__in, __typeMapper);
|
|
__typeMapper.consumeEndTag(__in);
|
|
}
|
|
|
|
protected void loadFields(com.sforce.ws.parser.XmlInputStream __in,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
|
|
super.loadFields(__in, __typeMapper);
|
|
loadFields1(__in, __typeMapper);
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
java.lang.StringBuilder sb = new java.lang.StringBuilder();
|
|
sb.append("[BatchProcessJobDefinition ");
|
|
sb.append(super.toString());
|
|
toString1(sb);
|
|
|
|
sb.append("]\n");
|
|
return sb.toString();
|
|
}
|
|
|
|
private void toStringHelper(StringBuilder sb, String name, Object value) {
|
|
sb.append(' ').append(name).append("='").append(com.sforce.ws.util.Verbose.toString(value)).append("'\n");
|
|
}
|
|
|
|
private void writeFields1(com.sforce.ws.parser.XmlOutputStream __out,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
writeFieldBatchSize(__out, __typeMapper);
|
|
writeFieldDataSource(__out, __typeMapper);
|
|
writeFieldDescription(__out, __typeMapper);
|
|
writeFieldExecutionProcessApiName(__out, __typeMapper);
|
|
writeFieldFlowApiName(__out, __typeMapper);
|
|
writeFieldFlowInputVariable(__out, __typeMapper);
|
|
writeFieldMasterLabel(__out, __typeMapper);
|
|
writeFieldProcessGroup(__out, __typeMapper);
|
|
writeFieldRetryCount(__out, __typeMapper);
|
|
writeFieldRetryInterval(__out, __typeMapper);
|
|
writeFieldStatus(__out, __typeMapper);
|
|
writeFieldType(__out, __typeMapper);
|
|
}
|
|
|
|
private void loadFields1(com.sforce.ws.parser.XmlInputStream __in,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
|
|
setBatchSize(__in, __typeMapper);
|
|
setDataSource(__in, __typeMapper);
|
|
setDescription(__in, __typeMapper);
|
|
setExecutionProcessApiName(__in, __typeMapper);
|
|
setFlowApiName(__in, __typeMapper);
|
|
setFlowInputVariable(__in, __typeMapper);
|
|
setMasterLabel(__in, __typeMapper);
|
|
setProcessGroup(__in, __typeMapper);
|
|
setRetryCount(__in, __typeMapper);
|
|
setRetryInterval(__in, __typeMapper);
|
|
setStatus(__in, __typeMapper);
|
|
setType(__in, __typeMapper);
|
|
}
|
|
|
|
private void toString1(StringBuilder sb) {
|
|
toStringHelper(sb, "batchSize", batchSize);
|
|
toStringHelper(sb, "dataSource", dataSource);
|
|
toStringHelper(sb, "description", description);
|
|
toStringHelper(sb, "executionProcessApiName", executionProcessApiName);
|
|
toStringHelper(sb, "flowApiName", flowApiName);
|
|
toStringHelper(sb, "flowInputVariable", flowInputVariable);
|
|
toStringHelper(sb, "masterLabel", masterLabel);
|
|
toStringHelper(sb, "processGroup", processGroup);
|
|
toStringHelper(sb, "retryCount", retryCount);
|
|
toStringHelper(sb, "retryInterval", retryInterval);
|
|
toStringHelper(sb, "status", status);
|
|
toStringHelper(sb, "type", type);
|
|
}
|
|
|
|
|
|
}
|