1   package org.codehaus.xfire.aegis.type;
2   
3   import java.util.Date;
4   
5   /***
6    * SomeBean
7    * 
8    * @author <a href="mailto:dan@envoisolutions.com">Dan Diephouse</a>
9    */
10  public class SimpleBean
11  {
12      private String bleh;
13  
14      private Date date;
15      
16      private int integer;
17      
18      public SimpleBean()
19      {
20      }
21      
22      public String getBleh()
23      {
24          return bleh;
25      }
26  
27      public void setBleh(String bleh)
28      {
29          this.bleh = bleh;
30      }
31  
32  	public int getInteger()
33  	{
34  		return integer;
35  	}
36      
37  	public void setInteger(int integer)
38  	{
39  		this.integer = integer;
40  	}
41      
42  	public Date getDate()
43  	{
44  		return date;
45  	}
46      
47  	public void setDate(Date date)
48  	{
49  		this.date = date;
50  	}
51  }