
com.sforce.soap.apex.Connector Maven / Gradle / Ivy
The newest version!
package com.sforce.soap.apex;
import com.sforce.ws.ConnectorConfig;
import com.sforce.ws.ConnectionException;
/**
* Generated by ConnectionCodeGenerator.java. Please do not edit.
*/
public class Connector {
public static final String END_POINT = "https://na3.salesforce.com/services/Soap/s/30.0";
public static SoapConnection newConnection(String username, String password) throws ConnectionException {
ConnectorConfig config = new ConnectorConfig();
config.setUsername(username);
config.setPassword(password);
return newConnection(config);
}
public static SoapConnection newConnection(ConnectorConfig config) throws ConnectionException {
if (config.getAuthEndpoint() == null) {
config.setAuthEndpoint(END_POINT);
}
if (config.getServiceEndpoint() == null) {
config.setServiceEndpoint(END_POINT);
}
return new SoapConnection(config);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy