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

Examples of net.lr.tutorial.karaf.cxf.personservice.model.PersonService.addPerson()


    }
   
    @Test
    public void testPutPerson() {
        PersonService personService = getService();
        personService.addPerson(createPerson());
        Person person2 = personService.getPerson("1001");
        assertCorrectPerson(person2);
    }
   
    @AfterClass
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.