use of org.jboss.test.ws.jaxws.benchmark.test.complex.types.InvoiceCustomer in project jbossws-cxf by jbossws.
the class JAXWSBenchmarkComplex method testInvoiceRegistration.
public void testInvoiceRegistration(Registration port, int r) throws Exception {
InvoiceCustomer customer = getInvoiceFredJackson(r);
customer.getReferredCustomers().add(getJohnDoe(r));
customer.getReferredCustomers().add(getAlCapone(r));
port.registerForInvoice(customer);
}
use of org.jboss.test.ws.jaxws.benchmark.test.complex.types.InvoiceCustomer in project jbossws-cxf by jbossws.
the class JAXWSBenchmarkComplex method getInvoiceFredJackson.
private InvoiceCustomer getInvoiceFredJackson(int r) {
Name name = new Name();
name.setFirstName("Fred");
name.setMiddleName("Jones");
name.setLastName("Jackson");
Address address = new Address();
address.setCity("Atlanta");
address.setState("Georgia");
address.setZip("53717");
address.setStreet("Yet Another Peach Tree St.");
PhoneNumber number1 = new PhoneNumber();
number1.setAreaCode("123");
number1.setExchange("456");
number1.setLine("7890");
PhoneNumber number2 = new PhoneNumber();
number1.setAreaCode("333");
number1.setExchange("222");
number1.setLine("1234");
InvoiceCustomer customer = new InvoiceCustomer();
customer.setId(r - 1);
customer.setName(name);
customer.setAddress(address);
customer.getContactNumbers().add(number1);
customer.getContactNumbers().add(number2);
customer.setCycleDay(10);
return customer;
}
use of org.jboss.test.ws.jaxws.benchmark.test.complex.types.InvoiceCustomer in project jbossws-cxf by jbossws.
the class ComplexTest method testInvoiceRegistration.
public void testInvoiceRegistration(Registration port) throws Exception {
InvoiceCustomer customer = getInvoiceFredJackson();
customer.getReferredCustomers().add(getJohnDoe());
customer.getReferredCustomers().add(getAlCapone());
port.registerForInvoice(customer);
}
use of org.jboss.test.ws.jaxws.benchmark.test.complex.types.InvoiceCustomer in project jbossws-cxf by jbossws.
the class ComplexTest method getInvoiceFredJackson.
private InvoiceCustomer getInvoiceFredJackson() {
Name name = new Name();
name.setFirstName("Fred");
name.setMiddleName("Jones");
name.setLastName("Jackson");
Address address = new Address();
address.setCity("Atlanta");
address.setState("Georgia");
address.setZip("53717");
address.setStreet("Yet Another Peach Tree St.");
PhoneNumber number1 = new PhoneNumber();
number1.setAreaCode("123");
number1.setExchange("456");
number1.setLine("7890");
PhoneNumber number2 = new PhoneNumber();
number1.setAreaCode("333");
number1.setExchange("222");
number1.setLine("1234");
InvoiceCustomer customer = new InvoiceCustomer();
customer.setId(123);
customer.setName(name);
customer.setAddress(address);
customer.getContactNumbers().add(number1);
customer.getContactNumbers().add(number2);
customer.setCycleDay(10);
return customer;
}
Aggregations