Package com.dietsodasoftware.yail.xmlrpc.service.contact

Examples of com.dietsodasoftware.yail.xmlrpc.service.contact.ContactServiceAddOperation


        contactData.put(Contact.Field.LastName.name(), "DemoLastName");
        contactData.put(Contact.Field.Email.name(), "whatever@whatever.com");
        contactData.put(Contact.Field.Company.name(),"Acme Rockets Inc");

        final Contact contact = new Contact(contactData);
        final ContactServiceAddOperation add = new ContactServiceAddOperation(contact);

        final Integer newId = client.call(add);
        System.out.println("The new Contact's ID: " + newId);
    }
View Full Code Here

TOP

Related Classes of com.dietsodasoftware.yail.xmlrpc.service.contact.ContactServiceAddOperation

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.