View Javadoc

1   /*
2    * $Id: TestPojo.java 20320 2010-11-24 15:03:31Z 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.config.spring.parsers.specific;
12  
13  public class TestPojo
14  {
15      private String config1;
16      private String config2;
17  
18      public TestPojo()
19      {
20      }
21  
22      public void method1(String arg1)
23      {
24      }
25  
26      public String method2(String arg1)
27      {
28          return arg1 + "method2Arg1" + config1 + " ";
29      }
30  
31      public String method2(String arg1, String arg2)
32      {
33          return arg1 + arg2 + "method2Arg1Arg2" + config2 + " ";
34      }
35  
36      public String getConfig1()
37      {
38          return config1;
39      }
40  
41      public void setConfig1(String config1)
42      {
43          this.config1 = config1;
44      }
45  
46      public String getConfig2()
47      {
48          return config2;
49      }
50  
51      public void setConfig2(String config2)
52      {
53          this.config2 = config2;
54      }
55  }