1   ///*
2   // * $Id: Binding.java 10790 2008-02-12 20:53:32Z dfeist $
3   // * --------------------------------------------------------------------------------------
4   // * Copyright (c) MuleSource, Inc.  All rights reserved.  http://www.mulesource.com
5   // *
6   // * The software in this package is published under the terms of the CPAL v1.0
7   // * license, a copy of which has been included with this distribution in the
8   // * LICENSE.txt file.
9   // */
10  
11  //package org.mule.test.integration.transformer.response;
12  //
13  //public class Binding implements BindingInterface
14  //{
15  //
16  //    private String hello1;
17  //    private String hello2;
18  //    private String hello3;
19  //    private String hello4;
20  //    private String hello5;
21  //    private String hello6;
22  //
23  //    public void hello1(String s)
24  //    {
25  //        hello1 = s;
26  //    }
27  //
28  //    public void hello2(String s)
29  //    {
30  //        hello2 = s;
31  //    }
32  //
33  //    public void hello3(String s)
34  //    {
35  //        hello3 = s;
36  //    }
37  //
38  //    public void hello4(String s)
39  //    {
40  //        hello4 = s;
41  //    }
42  //
43  //    public void hello5(String s)
44  //    {
45  //        hello5 = s;
46  //    }
47  //
48  //    public void hello6(String s)
49  //    {
50  //        hello6 = s;
51  //    }
52  //
53  //    public String getMessage()
54  //    {
55  //        return hello1 + hello2 + hello3 + hello4 + hello5 + hello6;
56  //    }
57  //
58  //}