602 lines
30 KiB
Java
602 lines
30 KiB
Java
|
|
package com.sforce.soap.metadata;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* This is a generated class for the SObject Enterprise API.
|
||
|
|
* Do not edit this file, as your changes will be lost.
|
||
|
|
*/
|
||
|
|
public class OmniProcessElement implements com.sforce.ws.bind.XMLizable {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Constructor
|
||
|
|
*/
|
||
|
|
public OmniProcessElement() {}
|
||
|
|
|
||
|
|
/* 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 : childElements of type {http://soap.sforce.com/2006/04/metadata}OmniProcessElement
|
||
|
|
* java type: com.sforce.soap.metadata.OmniProcessElement[]
|
||
|
|
*/
|
||
|
|
private boolean childElements__is_set = false;
|
||
|
|
|
||
|
|
private com.sforce.soap.metadata.OmniProcessElement[] childElements = new com.sforce.soap.metadata.OmniProcessElement[0];
|
||
|
|
|
||
|
|
public com.sforce.soap.metadata.OmniProcessElement[] getChildElements() {
|
||
|
|
return childElements;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setChildElements(com.sforce.soap.metadata.OmniProcessElement[] childElements) {
|
||
|
|
this.childElements = childElements;
|
||
|
|
childElements__is_set = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void setChildElements(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("childElements", "http://soap.sforce.com/2006/04/metadata","childElements","http://soap.sforce.com/2006/04/metadata","OmniProcessElement",0,-1,true))) {
|
||
|
|
setChildElements((com.sforce.soap.metadata.OmniProcessElement[])__typeMapper.readObject(__in, _lookupTypeInfo("childElements", "http://soap.sforce.com/2006/04/metadata","childElements","http://soap.sforce.com/2006/04/metadata","OmniProcessElement",0,-1,true), com.sforce.soap.metadata.OmniProcessElement[].class));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private void writeFieldChildElements(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
||
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("childElements", "http://soap.sforce.com/2006/04/metadata","childElements","http://soap.sforce.com/2006/04/metadata","OmniProcessElement",0,-1,true), childElements, childElements__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", "http://soap.sforce.com/2006/04/metadata","description","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
||
|
|
setDescription(__typeMapper.readString(__in, _lookupTypeInfo("description", "http://soap.sforce.com/2006/04/metadata","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", "http://soap.sforce.com/2006/04/metadata","description","http://www.w3.org/2001/XMLSchema","string",0,1,true), description, description__is_set);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : designerCustomizationType of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
private boolean designerCustomizationType__is_set = false;
|
||
|
|
|
||
|
|
private java.lang.String designerCustomizationType;
|
||
|
|
|
||
|
|
public java.lang.String getDesignerCustomizationType() {
|
||
|
|
return designerCustomizationType;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setDesignerCustomizationType(java.lang.String designerCustomizationType) {
|
||
|
|
this.designerCustomizationType = designerCustomizationType;
|
||
|
|
designerCustomizationType__is_set = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void setDesignerCustomizationType(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("designerCustomizationType", "http://soap.sforce.com/2006/04/metadata","designerCustomizationType","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
||
|
|
setDesignerCustomizationType(__typeMapper.readString(__in, _lookupTypeInfo("designerCustomizationType", "http://soap.sforce.com/2006/04/metadata","designerCustomizationType","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private void writeFieldDesignerCustomizationType(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
||
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("designerCustomizationType", "http://soap.sforce.com/2006/04/metadata","designerCustomizationType","http://www.w3.org/2001/XMLSchema","string",0,1,true), designerCustomizationType, designerCustomizationType__is_set);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : discoveryFrameworkUsageType of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
private boolean discoveryFrameworkUsageType__is_set = false;
|
||
|
|
|
||
|
|
private java.lang.String discoveryFrameworkUsageType;
|
||
|
|
|
||
|
|
public java.lang.String getDiscoveryFrameworkUsageType() {
|
||
|
|
return discoveryFrameworkUsageType;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setDiscoveryFrameworkUsageType(java.lang.String discoveryFrameworkUsageType) {
|
||
|
|
this.discoveryFrameworkUsageType = discoveryFrameworkUsageType;
|
||
|
|
discoveryFrameworkUsageType__is_set = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void setDiscoveryFrameworkUsageType(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("discoveryFrameworkUsageType", "http://soap.sforce.com/2006/04/metadata","discoveryFrameworkUsageType","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
||
|
|
setDiscoveryFrameworkUsageType(__typeMapper.readString(__in, _lookupTypeInfo("discoveryFrameworkUsageType", "http://soap.sforce.com/2006/04/metadata","discoveryFrameworkUsageType","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private void writeFieldDiscoveryFrameworkUsageType(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
||
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("discoveryFrameworkUsageType", "http://soap.sforce.com/2006/04/metadata","discoveryFrameworkUsageType","http://www.w3.org/2001/XMLSchema","string",0,1,true), discoveryFrameworkUsageType, discoveryFrameworkUsageType__is_set);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : embeddedOmniScriptKey of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
private boolean embeddedOmniScriptKey__is_set = false;
|
||
|
|
|
||
|
|
private java.lang.String embeddedOmniScriptKey;
|
||
|
|
|
||
|
|
public java.lang.String getEmbeddedOmniScriptKey() {
|
||
|
|
return embeddedOmniScriptKey;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setEmbeddedOmniScriptKey(java.lang.String embeddedOmniScriptKey) {
|
||
|
|
this.embeddedOmniScriptKey = embeddedOmniScriptKey;
|
||
|
|
embeddedOmniScriptKey__is_set = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void setEmbeddedOmniScriptKey(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("embeddedOmniScriptKey", "http://soap.sforce.com/2006/04/metadata","embeddedOmniScriptKey","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
||
|
|
setEmbeddedOmniScriptKey(__typeMapper.readString(__in, _lookupTypeInfo("embeddedOmniScriptKey", "http://soap.sforce.com/2006/04/metadata","embeddedOmniScriptKey","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private void writeFieldEmbeddedOmniScriptKey(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
||
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("embeddedOmniScriptKey", "http://soap.sforce.com/2006/04/metadata","embeddedOmniScriptKey","http://www.w3.org/2001/XMLSchema","string",0,1,true), embeddedOmniScriptKey, embeddedOmniScriptKey__is_set);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : isActive of type {http://www.w3.org/2001/XMLSchema}boolean
|
||
|
|
* java type: boolean
|
||
|
|
*/
|
||
|
|
private boolean isActive__is_set = false;
|
||
|
|
|
||
|
|
private boolean isActive;
|
||
|
|
|
||
|
|
public boolean getIsActive() {
|
||
|
|
return isActive;
|
||
|
|
}
|
||
|
|
|
||
|
|
public boolean isIsActive() {
|
||
|
|
return isActive;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setIsActive(boolean isActive) {
|
||
|
|
this.isActive = isActive;
|
||
|
|
isActive__is_set = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void setIsActive(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("isActive", "http://soap.sforce.com/2006/04/metadata","isActive","http://www.w3.org/2001/XMLSchema","boolean",0,1,true))) {
|
||
|
|
setIsActive(__typeMapper.readBoolean(__in, _lookupTypeInfo("isActive", "http://soap.sforce.com/2006/04/metadata","isActive","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), boolean.class));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private void writeFieldIsActive(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
||
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("isActive", "http://soap.sforce.com/2006/04/metadata","isActive","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), isActive, isActive__is_set);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : isOmniScriptEmbeddable of type {http://www.w3.org/2001/XMLSchema}boolean
|
||
|
|
* java type: boolean
|
||
|
|
*/
|
||
|
|
private boolean isOmniScriptEmbeddable__is_set = false;
|
||
|
|
|
||
|
|
private boolean isOmniScriptEmbeddable;
|
||
|
|
|
||
|
|
public boolean getIsOmniScriptEmbeddable() {
|
||
|
|
return isOmniScriptEmbeddable;
|
||
|
|
}
|
||
|
|
|
||
|
|
public boolean isIsOmniScriptEmbeddable() {
|
||
|
|
return isOmniScriptEmbeddable;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setIsOmniScriptEmbeddable(boolean isOmniScriptEmbeddable) {
|
||
|
|
this.isOmniScriptEmbeddable = isOmniScriptEmbeddable;
|
||
|
|
isOmniScriptEmbeddable__is_set = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void setIsOmniScriptEmbeddable(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("isOmniScriptEmbeddable", "http://soap.sforce.com/2006/04/metadata","isOmniScriptEmbeddable","http://www.w3.org/2001/XMLSchema","boolean",0,1,true))) {
|
||
|
|
setIsOmniScriptEmbeddable(__typeMapper.readBoolean(__in, _lookupTypeInfo("isOmniScriptEmbeddable", "http://soap.sforce.com/2006/04/metadata","isOmniScriptEmbeddable","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), boolean.class));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private void writeFieldIsOmniScriptEmbeddable(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
||
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("isOmniScriptEmbeddable", "http://soap.sforce.com/2006/04/metadata","isOmniScriptEmbeddable","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), isOmniScriptEmbeddable, isOmniScriptEmbeddable__is_set);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : level of type {http://www.w3.org/2001/XMLSchema}double
|
||
|
|
* java type: double
|
||
|
|
*/
|
||
|
|
private boolean level__is_set = false;
|
||
|
|
|
||
|
|
private double level;
|
||
|
|
|
||
|
|
public double getLevel() {
|
||
|
|
return level;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setLevel(double level) {
|
||
|
|
this.level = level;
|
||
|
|
level__is_set = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void setLevel(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("level", "http://soap.sforce.com/2006/04/metadata","level","http://www.w3.org/2001/XMLSchema","double",0,1,true))) {
|
||
|
|
setLevel((double)__typeMapper.readDouble(__in, _lookupTypeInfo("level", "http://soap.sforce.com/2006/04/metadata","level","http://www.w3.org/2001/XMLSchema","double",0,1,true), double.class));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private void writeFieldLevel(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
||
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("level", "http://soap.sforce.com/2006/04/metadata","level","http://www.w3.org/2001/XMLSchema","double",0,1,true), level, level__is_set);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : name of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
private boolean name__is_set = false;
|
||
|
|
|
||
|
|
private java.lang.String name;
|
||
|
|
|
||
|
|
public java.lang.String getName() {
|
||
|
|
return name;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setName(java.lang.String name) {
|
||
|
|
this.name = name;
|
||
|
|
name__is_set = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void setName(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("name", "http://soap.sforce.com/2006/04/metadata","name","http://www.w3.org/2001/XMLSchema","string",1,1,true))) {
|
||
|
|
setName(__typeMapper.readString(__in, _lookupTypeInfo("name", "http://soap.sforce.com/2006/04/metadata","name","http://www.w3.org/2001/XMLSchema","string",1,1,true), java.lang.String.class));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private void writeFieldName(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
||
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("name", "http://soap.sforce.com/2006/04/metadata","name","http://www.w3.org/2001/XMLSchema","string",1,1,true), name, name__is_set);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : omniProcessVersionNumber of type {http://www.w3.org/2001/XMLSchema}double
|
||
|
|
* java type: double
|
||
|
|
*/
|
||
|
|
private boolean omniProcessVersionNumber__is_set = false;
|
||
|
|
|
||
|
|
private double omniProcessVersionNumber;
|
||
|
|
|
||
|
|
public double getOmniProcessVersionNumber() {
|
||
|
|
return omniProcessVersionNumber;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setOmniProcessVersionNumber(double omniProcessVersionNumber) {
|
||
|
|
this.omniProcessVersionNumber = omniProcessVersionNumber;
|
||
|
|
omniProcessVersionNumber__is_set = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void setOmniProcessVersionNumber(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("omniProcessVersionNumber", "http://soap.sforce.com/2006/04/metadata","omniProcessVersionNumber","http://www.w3.org/2001/XMLSchema","double",0,1,true))) {
|
||
|
|
setOmniProcessVersionNumber((double)__typeMapper.readDouble(__in, _lookupTypeInfo("omniProcessVersionNumber", "http://soap.sforce.com/2006/04/metadata","omniProcessVersionNumber","http://www.w3.org/2001/XMLSchema","double",0,1,true), double.class));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private void writeFieldOmniProcessVersionNumber(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
||
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("omniProcessVersionNumber", "http://soap.sforce.com/2006/04/metadata","omniProcessVersionNumber","http://www.w3.org/2001/XMLSchema","double",0,1,true), omniProcessVersionNumber, omniProcessVersionNumber__is_set);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : parentElementName of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
private boolean parentElementName__is_set = false;
|
||
|
|
|
||
|
|
private java.lang.String parentElementName;
|
||
|
|
|
||
|
|
public java.lang.String getParentElementName() {
|
||
|
|
return parentElementName;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setParentElementName(java.lang.String parentElementName) {
|
||
|
|
this.parentElementName = parentElementName;
|
||
|
|
parentElementName__is_set = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void setParentElementName(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("parentElementName", "http://soap.sforce.com/2006/04/metadata","parentElementName","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
||
|
|
setParentElementName(__typeMapper.readString(__in, _lookupTypeInfo("parentElementName", "http://soap.sforce.com/2006/04/metadata","parentElementName","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private void writeFieldParentElementName(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
||
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("parentElementName", "http://soap.sforce.com/2006/04/metadata","parentElementName","http://www.w3.org/2001/XMLSchema","string",0,1,true), parentElementName, parentElementName__is_set);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : parentElementType of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
private boolean parentElementType__is_set = false;
|
||
|
|
|
||
|
|
private java.lang.String parentElementType;
|
||
|
|
|
||
|
|
public java.lang.String getParentElementType() {
|
||
|
|
return parentElementType;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setParentElementType(java.lang.String parentElementType) {
|
||
|
|
this.parentElementType = parentElementType;
|
||
|
|
parentElementType__is_set = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void setParentElementType(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("parentElementType", "http://soap.sforce.com/2006/04/metadata","parentElementType","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
||
|
|
setParentElementType(__typeMapper.readString(__in, _lookupTypeInfo("parentElementType", "http://soap.sforce.com/2006/04/metadata","parentElementType","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private void writeFieldParentElementType(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
||
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("parentElementType", "http://soap.sforce.com/2006/04/metadata","parentElementType","http://www.w3.org/2001/XMLSchema","string",0,1,true), parentElementType, parentElementType__is_set);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : propertySetConfig of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
private boolean propertySetConfig__is_set = false;
|
||
|
|
|
||
|
|
private java.lang.String propertySetConfig;
|
||
|
|
|
||
|
|
public java.lang.String getPropertySetConfig() {
|
||
|
|
return propertySetConfig;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setPropertySetConfig(java.lang.String propertySetConfig) {
|
||
|
|
this.propertySetConfig = propertySetConfig;
|
||
|
|
propertySetConfig__is_set = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void setPropertySetConfig(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("propertySetConfig", "http://soap.sforce.com/2006/04/metadata","propertySetConfig","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
||
|
|
setPropertySetConfig(__typeMapper.readString(__in, _lookupTypeInfo("propertySetConfig", "http://soap.sforce.com/2006/04/metadata","propertySetConfig","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private void writeFieldPropertySetConfig(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
||
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("propertySetConfig", "http://soap.sforce.com/2006/04/metadata","propertySetConfig","http://www.w3.org/2001/XMLSchema","string",0,1,true), propertySetConfig, propertySetConfig__is_set);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : sequenceNumber of type {http://www.w3.org/2001/XMLSchema}double
|
||
|
|
* java type: double
|
||
|
|
*/
|
||
|
|
private boolean sequenceNumber__is_set = false;
|
||
|
|
|
||
|
|
private double sequenceNumber;
|
||
|
|
|
||
|
|
public double getSequenceNumber() {
|
||
|
|
return sequenceNumber;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setSequenceNumber(double sequenceNumber) {
|
||
|
|
this.sequenceNumber = sequenceNumber;
|
||
|
|
sequenceNumber__is_set = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void setSequenceNumber(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("sequenceNumber", "http://soap.sforce.com/2006/04/metadata","sequenceNumber","http://www.w3.org/2001/XMLSchema","double",0,1,true))) {
|
||
|
|
setSequenceNumber((double)__typeMapper.readDouble(__in, _lookupTypeInfo("sequenceNumber", "http://soap.sforce.com/2006/04/metadata","sequenceNumber","http://www.w3.org/2001/XMLSchema","double",0,1,true), double.class));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private void writeFieldSequenceNumber(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
||
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("sequenceNumber", "http://soap.sforce.com/2006/04/metadata","sequenceNumber","http://www.w3.org/2001/XMLSchema","double",0,1,true), sequenceNumber, sequenceNumber__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", "http://soap.sforce.com/2006/04/metadata","type","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
||
|
|
setType(__typeMapper.readString(__in, _lookupTypeInfo("type", "http://soap.sforce.com/2006/04/metadata","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", "http://soap.sforce.com/2006/04/metadata","type","http://www.w3.org/2001/XMLSchema","string",0,1,true), type, type__is_set);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : uniqueIndex of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
private boolean uniqueIndex__is_set = false;
|
||
|
|
|
||
|
|
private java.lang.String uniqueIndex;
|
||
|
|
|
||
|
|
public java.lang.String getUniqueIndex() {
|
||
|
|
return uniqueIndex;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setUniqueIndex(java.lang.String uniqueIndex) {
|
||
|
|
this.uniqueIndex = uniqueIndex;
|
||
|
|
uniqueIndex__is_set = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void setUniqueIndex(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("uniqueIndex", "http://soap.sforce.com/2006/04/metadata","uniqueIndex","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
||
|
|
setUniqueIndex(__typeMapper.readString(__in, _lookupTypeInfo("uniqueIndex", "http://soap.sforce.com/2006/04/metadata","uniqueIndex","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private void writeFieldUniqueIndex(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
||
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("uniqueIndex", "http://soap.sforce.com/2006/04/metadata","uniqueIndex","http://www.w3.org/2001/XMLSchema","string",0,1,true), uniqueIndex, uniqueIndex__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());
|
||
|
|
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 {
|
||
|
|
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 {
|
||
|
|
loadFields1(__in, __typeMapper);
|
||
|
|
}
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public String toString() {
|
||
|
|
java.lang.StringBuilder sb = new java.lang.StringBuilder();
|
||
|
|
sb.append("[OmniProcessElement ");
|
||
|
|
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 {
|
||
|
|
writeFieldChildElements(__out, __typeMapper);
|
||
|
|
writeFieldDescription(__out, __typeMapper);
|
||
|
|
writeFieldDesignerCustomizationType(__out, __typeMapper);
|
||
|
|
writeFieldDiscoveryFrameworkUsageType(__out, __typeMapper);
|
||
|
|
writeFieldEmbeddedOmniScriptKey(__out, __typeMapper);
|
||
|
|
writeFieldIsActive(__out, __typeMapper);
|
||
|
|
writeFieldIsOmniScriptEmbeddable(__out, __typeMapper);
|
||
|
|
writeFieldLevel(__out, __typeMapper);
|
||
|
|
writeFieldName(__out, __typeMapper);
|
||
|
|
writeFieldOmniProcessVersionNumber(__out, __typeMapper);
|
||
|
|
writeFieldParentElementName(__out, __typeMapper);
|
||
|
|
writeFieldParentElementType(__out, __typeMapper);
|
||
|
|
writeFieldPropertySetConfig(__out, __typeMapper);
|
||
|
|
writeFieldSequenceNumber(__out, __typeMapper);
|
||
|
|
writeFieldType(__out, __typeMapper);
|
||
|
|
writeFieldUniqueIndex(__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 {
|
||
|
|
setChildElements(__in, __typeMapper);
|
||
|
|
setDescription(__in, __typeMapper);
|
||
|
|
setDesignerCustomizationType(__in, __typeMapper);
|
||
|
|
setDiscoveryFrameworkUsageType(__in, __typeMapper);
|
||
|
|
setEmbeddedOmniScriptKey(__in, __typeMapper);
|
||
|
|
setIsActive(__in, __typeMapper);
|
||
|
|
setIsOmniScriptEmbeddable(__in, __typeMapper);
|
||
|
|
setLevel(__in, __typeMapper);
|
||
|
|
setName(__in, __typeMapper);
|
||
|
|
setOmniProcessVersionNumber(__in, __typeMapper);
|
||
|
|
setParentElementName(__in, __typeMapper);
|
||
|
|
setParentElementType(__in, __typeMapper);
|
||
|
|
setPropertySetConfig(__in, __typeMapper);
|
||
|
|
setSequenceNumber(__in, __typeMapper);
|
||
|
|
setType(__in, __typeMapper);
|
||
|
|
setUniqueIndex(__in, __typeMapper);
|
||
|
|
}
|
||
|
|
|
||
|
|
private void toString1(StringBuilder sb) {
|
||
|
|
toStringHelper(sb, "childElements", childElements);
|
||
|
|
toStringHelper(sb, "description", description);
|
||
|
|
toStringHelper(sb, "designerCustomizationType", designerCustomizationType);
|
||
|
|
toStringHelper(sb, "discoveryFrameworkUsageType", discoveryFrameworkUsageType);
|
||
|
|
toStringHelper(sb, "embeddedOmniScriptKey", embeddedOmniScriptKey);
|
||
|
|
toStringHelper(sb, "isActive", isActive);
|
||
|
|
toStringHelper(sb, "isOmniScriptEmbeddable", isOmniScriptEmbeddable);
|
||
|
|
toStringHelper(sb, "level", level);
|
||
|
|
toStringHelper(sb, "name", name);
|
||
|
|
toStringHelper(sb, "omniProcessVersionNumber", omniProcessVersionNumber);
|
||
|
|
toStringHelper(sb, "parentElementName", parentElementName);
|
||
|
|
toStringHelper(sb, "parentElementType", parentElementType);
|
||
|
|
toStringHelper(sb, "propertySetConfig", propertySetConfig);
|
||
|
|
toStringHelper(sb, "sequenceNumber", sequenceNumber);
|
||
|
|
toStringHelper(sb, "type", type);
|
||
|
|
toStringHelper(sb, "uniqueIndex", uniqueIndex);
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
}
|