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