001: /*
002: * Licensed to the Apache Software Foundation (ASF) under one
003: * or more contributor license agreements. See the NOTICE file
004: * distributed with this work for additional information
005: * regarding copyright ownership. The ASF licenses this file
006: * to you under the Apache License, Version 2.0 (the
007: * "License"); you may not use this file except in compliance
008: * with the License. You may obtain a copy of the License at
009: *
010: * http://www.apache.org/licenses/LICENSE-2.0
011: *
012: * Unless required by applicable law or agreed to in writing,
013: * software distributed under the License is distributed on an
014: * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
015: * KIND, either express or implied. See the License for the
016: * specific language governing permissions and limitations
017: * under the License.
018: */
019:
020: package org.apache.axis2.jaxws.description;
021:
022: import org.test.proxy.doclitwrapped.FinOpResponse;
023: import org.test.proxy.doclitwrapped.FinancialOperation;
024: import org.test.proxy.doclitwrapped.ReturnType;
025: import org.test.proxy.doclitwrapped.TwoWayHolder;
026:
027: import javax.jws.WebService;
028: import javax.xml.ws.AsyncHandler;
029: import javax.xml.ws.Holder;
030: import javax.xml.ws.Response;
031: import java.util.concurrent.Future;
032:
033: /**
034: *
035: */
036: @WebService(serviceName="DocLitWrappedService",endpointInterface="org.apache.axis2.jaxws.description.DocLitWrappedProxy")
037: public class DocLitWrappedImplWithSEI {
038:
039: public void oneWayVoid() {
040: return;
041: }
042:
043: public void oneWay(String onewayStr) {
044: return;
045: }
046:
047: public Response<TwoWayHolder> twoWayHolderAsync(
048: String twoWayHolderStr, int twoWayHolderInt) {
049: return null;
050: }
051:
052: public Future<?> twoWayHolderAsync(String twoWayHolderStr,
053: int twoWayHolderInt, AsyncHandler<TwoWayHolder> asyncHandler) {
054: return null;
055: }
056:
057: public void twoWayHolder(Holder<String> twoWayHolderStr,
058: Holder<Integer> twoWayHolderInt) {
059: return;
060: }
061:
062: public Response<ReturnType> twoWayAsync(String twowayStr) {
063: return null;
064: }
065:
066: public Future<?> twoWayAsync(String twowayStr,
067: AsyncHandler<ReturnType> asyncHandler) {
068: return null;
069: }
070:
071: public String twoWay(String twowayStr) {
072: return null;
073: }
074:
075: public Response<ReturnType> invokeAsync(String invokeStr) {
076: return null;
077: }
078:
079: public Future<?> invokeAsync(String invokeStr,
080: AsyncHandler<ReturnType> asyncHandler) {
081: return null;
082: }
083:
084: public String invoke(String invokeStr) {
085: return null;
086: }
087:
088: public Response<FinOpResponse> finOpAsync(FinancialOperation op) {
089: return null;
090: }
091:
092: public Future<?> finOpAsync(FinancialOperation op,
093: AsyncHandler<FinOpResponse> asyncHandler) {
094: return null;
095: }
096:
097: public FinancialOperation finOp(FinancialOperation op) {
098: return null;
099: }
100:
101: }
|