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.routing.filters.xml;
8   
9   public class Dummy
10  {
11  
12      private int id;
13      private String content;
14  
15      public Dummy()
16      {
17          super();
18      }
19  
20      /**
21       * @return Returns the content.
22       */
23      public String getContent()
24      {
25          return content;
26      }
27  
28      /**
29       * @param content The content to set.
30       */
31      public void setContent(String content)
32      {
33          this.content = content;
34      }
35  
36      /**
37       * @return Returns the id.
38       */
39      public int getId()
40      {
41          return id;
42      }
43  
44      /**
45       * @param id The id to set.
46       */
47      public void setId(int id)
48      {
49          this.id = id;
50      }
51  
52  }