summaryrefslogtreecommitdiffstats
path: root/tags/java-stable-20060304/samples/helloworld/helloworldaxis2/src/main/java/org/apache/tuscany/samples/helloworldaxis/HelloWorldServiceImplSkeleton.java
blob: 7796e088734486683f6fe5d615abafd5e2899014 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/**
 * HelloWorldServiceImplSkeleton.java This file was auto-generated from WSDL by
 * the Apache Axis2 version: 0.94-SNAPSHOT Jan 10, 2006 (10:21:58 LKT)
 */
package org.apache.tuscany.samples.helloworldaxis;

/**
 * HelloWorldServiceImplSkeleton java skeleton for the axisService
 */
public class HelloWorldServiceImplSkeleton
{
    /**
     * Auto generated method signature
     *
     * @param greetings
     */
    public org.apache.tuscany.samples.helloworldaxis.GetGreetingsResponse getGreetings(
                                                                                       org.apache.tuscany.samples.helloworldaxis.GetGreetings greetings )
    {
        GetGreetingsResponse response = new GetGreetingsResponse();
        response.setGetGreetingsReturn( "Greeting: " + greetings.getIn0() );
        return response;
    }
}