Package com.sforce.soap.partner.wsc

Examples of com.sforce.soap.partner.wsc.CallOptions_element


                for (String key : keys) {
                    strBuff.append("\n ").append(key).append("='").append(headers.get(key)).append("'");
                }
            }

            CallOptions_element callOptions = partnerConnection.getCallOptions();
            if (callOptions != null) {
                strBuff.append("\n clientId='" + callOptions.getClient() + "'")
                        .append("\n clientLog='" + callOptions.getClientLog() + "'")
                        .append("\n defaultNamespace='" + callOptions.getDefaultNamespace() + "'")
                        .append("\n remoteApplication='" + callOptions.getRemoteApplication() + "'");
            } else {
                strBuff.append("\n call options = n/a");
            }

            logger.debug(strBuff.toString());
View Full Code Here

TOP

Related Classes of com.sforce.soap.partner.wsc.CallOptions_element

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.