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: */package org.apache.cxf.greeter_control;
19:
20: import javax.jws.Oneway;
21: import javax.jws.WebMethod;
22: import javax.jws.WebParam;
23: import javax.jws.WebResult;
24: import javax.jws.WebService;
25: import javax.xml.ws.RequestWrapper;
26: import javax.xml.ws.ResponseWrapper;
27:
28: /**
29: * This class was generated by the CXF 2.0-incubator-RC-SNAPSHOT
30: * Fri Mar 02 15:33:36 EST 2007
31: * Generated source version: 2.0-incubator-RC-SNAPSHOT
32: *
33: */
34:
35: @WebService(targetNamespace="http://cxf.apache.org/greeter_control",name="Greeter")
36: public interface GreeterNoWsdl {
37:
38: @ResponseWrapper(targetNamespace="http://cxf.apache.org/greeter_control/types",className="org.apache.cxf.greeter_control.types.SayHiResponse",localName="sayHiResponse")
39: @RequestWrapper(targetNamespace="http://cxf.apache.org/greeter_control/types",className="org.apache.cxf.greeter_control.types.SayHi",localName="sayHi")
40: @WebResult(targetNamespace="http://cxf.apache.org/greeter_control/types",name="responseType")
41: @WebMethod(operationName="sayHi")
42: java.lang.String sayHi();
43:
44: @ResponseWrapper(targetNamespace="http://cxf.apache.org/greeter_control/types",className="org.apache.cxf.greeter_control.types.GreetMeResponse",localName="greetMeResponse")
45: @RequestWrapper(targetNamespace="http://cxf.apache.org/greeter_control/types",className="org.apache.cxf.greeter_control.types.GreetMe",localName="greetMe")
46: @WebResult(targetNamespace="http://cxf.apache.org/greeter_control/types",name="responseType")
47: @WebMethod(operationName="greetMe")
48: java.lang.String greetMe(
49: @WebParam(targetNamespace="http://cxf.apache.org/greeter_control/types",name="requestType")
50: java.lang.String requestType);
51:
52: @Oneway
53: @RequestWrapper(targetNamespace="http://cxf.apache.org/greeter_control/types",className="org.apache.cxf.greeter_control.types.GreetMeOneWay",localName="greetMeOneWay")
54: @WebMethod(operationName="greetMeOneWay")
55: void greetMeOneWay(
56: @WebParam(targetNamespace="http://cxf.apache.org/greeter_control/types",name="requestType")
57: java.lang.String requestType);
58:
59: @ResponseWrapper(targetNamespace="http://cxf.apache.org/greeter_control/types",className="org.apache.cxf.greeter_control.types.PingMeResponse",localName="pingMeResponse")
60: @RequestWrapper(targetNamespace="http://cxf.apache.org/greeter_control/types",className="org.apache.cxf.greeter_control.types.PingMe",localName="pingMe")
61: @WebMethod(operationName="pingMe")
62: void pingMe() throws PingMeFault;
63: }
|