Package org.apache.beehive.enhancedaddressbook

Examples of org.apache.beehive.enhancedaddressbook.StateType


    address.setZip(98119);
    Phone phone = Phone.Factory.newInstance();
    phone.setAreaCode(206);
    phone.setNumber("111-2222");
    address.setPhoneNumber(phone);
    StateType state = StateType.Factory.newInstance();
    state.setState("WA");
    address.setState(state);
    client.addEntry("apache", address);

    // retrieve the address
    Address response = client.getAddressFromName("apache");
View Full Code Here

TOP

Related Classes of org.apache.beehive.enhancedaddressbook.StateType

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.