Package net.lr.tutorial.karaf.cxf.personrest.model

Examples of net.lr.tutorial.karaf.cxf.personrest.model.PersonService.updatePerson()


    public void testInterface() {
        PersonService personService = JAXRSClientFactory.create(PERSONSERVICE_TESTURL, PersonService.class);
        Person person = new Person();
        person.setId("1002");
        person.setName("Christian Schneider");
        personService.updatePerson("1002", person);
       
        Person person2 = personService.getPerson("1002");
        assertCorrectPerson(person2);
    }
   
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.