1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.springframework.ws.test.server.integration;
18
19 import org.springframework.ws.server.endpoint.annotation.Endpoint;
20 import org.springframework.ws.server.endpoint.annotation.RequestPayload;
21 import org.springframework.ws.server.endpoint.annotation.ResponsePayload;
22 import org.springframework.ws.test.integration.CustomerCountRequest;
23 import org.springframework.ws.test.integration.CustomerCountResponse;
24
25 @Endpoint
26 public class CustomerEndpoint {
27
28 @ResponsePayload
29 public CustomerCountResponse getCustomerCount(@RequestPayload CustomerCountRequest request) {
30 CustomerCountResponse response = new CustomerCountResponse();
31 response.setCustomerCount(42);
32 return response;
33 }
34
35 }