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.transport.ajax;
8   
9   import org.codehaus.jackson.annotate.JsonProperty;
10  
11  /**
12   * TODO
13   */
14  public class DummyJsonBean
15  {
16      @JsonProperty
17      private String name;
18  
19      public DummyJsonBean()
20      {
21      }
22  
23      public DummyJsonBean(String name)
24      {
25          this.name = name;
26      }
27  
28      public String getName()
29      {
30          return name;
31      }
32  
33      public void setName(String name)
34      {
35          this.name = name;
36      }
37  
38      @Override
39      public String toString()
40      {
41          return "DummyJsonBean{" +
42                  "name='" + name + '\'' +
43                  '}';
44      }
45  }