Provides an implementation of the Partner and Enterprise WSDL API client.
PartnerConnection connection = Connector.newConnection(username, password);
SObject account = new SObject();
account.setType("Account");
account.setField("Name", "My Account");
account.setField("Phone", "123 244 3455");
connection.create(new SObject[]{account});
EnterpriseConnection connection = Connector.newConnection(username, password);
Account account = new Account();
account.setName("My Account");
account.setPhone("123 244 3455");
connection.create(new SObject[]{account});