in cxf-soap/src/main/java/org/acme/cxf/soap/wsdl/repository/CustomerRepository.java [62:71]
private void populateCustomers() throws DatatypeConfigurationException {
Customer a = new Customer();
a.setCustomerId(1);
a.setName("test");
a.setType(CustomerType.PRIVATE);
a.setNumOrders(1);
a.setBirthDate(LocalDate.now());
customers.add(a);
}