01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one
03: * or more contributor license agreements. See the NOTICE file
04: * distributed with this work for additional information
05: * regarding copyright ownership. The ASF licenses this file
06: * to you under the Apache License, Version 2.0 (the
07: * "License"); you may not use this file except in compliance
08: * with the License. You may obtain a copy of the License at
09: *
10: * http://www.apache.org/licenses/LICENSE-2.0
11: *
12: * Unless required by applicable law or agreed to in writing,
13: * software distributed under the License is distributed on an
14: * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15: * KIND, either express or implied. See the License for the
16: * specific language governing permissions and limitations
17: * under the License.
18: */
19: package org.apache.axis2.jaxws.proxy.doclitnonwrapped.sei;
20:
21: import java.util.concurrent.Future;
22:
23: import javax.jws.WebMethod;
24: import javax.jws.WebParam;
25: import javax.jws.WebResult;
26: import javax.jws.WebService;
27: import javax.jws.soap.SOAPBinding;
28: import javax.jws.soap.SOAPBinding.ParameterStyle;
29: import javax.xml.ws.AsyncHandler;
30: import javax.xml.ws.Response;
31:
32: import org.test.proxy.doclitnonwrapped.Invoke;
33: import org.test.proxy.doclitnonwrapped.ReturnType;
34:
35: /**
36: * This class was generated by the JAXWS SI.
37: * JAX-WS RI 2.0_01-b15-fcs
38: * Generated source version: 2.0
39: *
40: */
41: @WebService(name="DocLitnonWrappedProxy",targetNamespace="http://doclitnonwrapped.proxy.test.org")
42: @SOAPBinding(parameterStyle=ParameterStyle.BARE)
43: public interface DocLitnonWrappedProxy {
44: /**
45: *
46: * @param allByMyself
47: * @return
48: * returns javax.xml.ws.Response<org.test.proxy.doclitnonwrapped.ReturnType>
49: */
50: @WebMethod(operationName="invoke",action="http://doclitnonwrapped.proxy.test.org/invokeReturn")
51: public Response<ReturnType> invokeAsync(
52: @WebParam(name="invoke",targetNamespace="http://doclitnonwrapped.proxy.test.org",partName="allByMyself")
53: Invoke allByMyself);
54:
55: /**
56: *
57: * @param allByMyself
58: * @param asyncHandler
59: * @return
60: * returns java.util.concurrent.Future<? extends java.lang.Object>
61: */
62: @WebMethod(operationName="invoke",action="http://doclitnonwrapped.proxy.test.org/invokeReturn")
63: public Future<?> invokeAsync(
64: @WebParam(name="invoke",targetNamespace="http://doclitnonwrapped.proxy.test.org",partName="allByMyself")
65: Invoke allByMyself,
66: @WebParam(name="invokeResponse",targetNamespace="",partName="asyncHandler")
67: AsyncHandler<ReturnType> asyncHandler);
68:
69: /**
70: *
71: * @param allByMyself
72: * @return
73: * returns org.test.proxy.doclitnonwrapped.ReturnType
74: */
75: @WebMethod(action="http://doclitnonwrapped.proxy.test.org/invokeReturn")
76: @WebResult(name="ReturnType",targetNamespace="http://doclitnonwrapped.proxy.test.org",partName="allByMyself")
77: public ReturnType invoke(
78: @WebParam(name="invoke",targetNamespace="http://doclitnonwrapped.proxy.test.org",partName="allByMyself")
79: Invoke allByMyself);
80:
81: }
|