View Javadoc
1   /*
2    * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
3    * The software in this package is published under the terms of the CPAL v1.0
4    * license, a copy of which has been included with this distribution in the
5    * LICENSE.txt file.
6    */
7   package org.mule.config.spring.parsers.specific;
8   
9   public class TestPojo
10  {
11      private String config1;
12      private String config2;
13  
14      public TestPojo()
15      {
16      }
17  
18      public void method1(String arg1)
19      {
20      }
21  
22      public String method2(String arg1)
23      {
24          return arg1 + "method2Arg1" + config1 + " ";
25      }
26  
27      public String method2(String arg1, String arg2)
28      {
29          return arg1 + arg2 + "method2Arg1Arg2" + config2 + " ";
30      }
31  
32      public String getConfig1()
33      {
34          return config1;
35      }
36  
37      public void setConfig1(String config1)
38      {
39          this.config1 = config1;
40      }
41  
42      public String getConfig2()
43      {
44          return config2;
45      }
46  
47      public void setConfig2(String config2)
48      {
49          this.config2 = config2;
50      }
51  }