package com.sforce.soap.partner; /** * This is a generated class for the SObject Enterprise API. * Do not edit this file, as your changes will be lost. */ public class RetrieveQuickActionTemplates_element implements com.sforce.ws.bind.XMLizable , IRetrieveQuickActionTemplates_element{ /** * Constructor */ public RetrieveQuickActionTemplates_element() {} /* Cache the typeInfo instead of declaring static fields throughout*/ private transient java.util.Map typeInfoCache = new java.util.HashMap(); 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 : quickActionNames of type {http://www.w3.org/2001/XMLSchema}string * java type: java.lang.String[] */ private boolean quickActionNames__is_set = false; private java.lang.String[] quickActionNames = new java.lang.String[0]; @Override public java.lang.String[] getQuickActionNames() { return quickActionNames; } @Override public void setQuickActionNames(java.lang.String[] quickActionNames) { this.quickActionNames = castArray(java.lang.String.class, quickActionNames); quickActionNames__is_set = true; } protected void setQuickActionNames(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("quickActionNames", "urn:partner.soap.sforce.com","quickActionNames","http://www.w3.org/2001/XMLSchema","string",0,-1,true))) { setQuickActionNames((java.lang.String[])__typeMapper.readObject(__in, _lookupTypeInfo("quickActionNames", "urn:partner.soap.sforce.com","quickActionNames","http://www.w3.org/2001/XMLSchema","string",0,-1,true), java.lang.String[].class)); } } private void writeFieldQuickActionNames(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException { __typeMapper.writeObject(__out, _lookupTypeInfo("quickActionNames", "urn:partner.soap.sforce.com","quickActionNames","http://www.w3.org/2001/XMLSchema","string",0,-1,true), quickActionNames, quickActionNames__is_set); } /** * element : contextId of type {urn:partner.soap.sforce.com}ID * java type: java.lang.String */ private boolean contextId__is_set = false; private java.lang.String contextId; @Override public java.lang.String getContextId() { return contextId; } @Override public void setContextId(java.lang.String contextId) { this.contextId = contextId; contextId__is_set = true; } protected void setContextId(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("contextId", "urn:partner.soap.sforce.com","contextId","urn:partner.soap.sforce.com","ID",1,1,true))) { setContextId(__typeMapper.readString(__in, _lookupTypeInfo("contextId", "urn:partner.soap.sforce.com","contextId","urn:partner.soap.sforce.com","ID",1,1,true), java.lang.String.class)); } } private void writeFieldContextId(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException { __typeMapper.writeObject(__out, _lookupTypeInfo("contextId", "urn:partner.soap.sforce.com","contextId","urn:partner.soap.sforce.com","ID",1,1,true), contextId, contextId__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("[RetrieveQuickActionTemplates_element "); 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 { writeFieldQuickActionNames(__out, __typeMapper); writeFieldContextId(__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 { setQuickActionNames(__in, __typeMapper); setContextId(__in, __typeMapper); } private void toString1(StringBuilder sb) { toStringHelper(sb, "quickActionNames", quickActionNames); toStringHelper(sb, "contextId", contextId); } @SuppressWarnings("unchecked") private T[] castArray(Class clazz, U[] array) { if (array == null) { return null; } T[] retVal = (T[]) java.lang.reflect.Array.newInstance(clazz, array.length); for (int i=0; i < array.length; i++) { retVal[i] = (T)array[i]; } return retVal; } }