View Javadoc
1   package org.castor.test.entity;
2   
3   /**
4    *
5    *
6    * @author <a herf="mailto:jmnarloch AT gmail DOT com">Jakub Narloch</a>
7    * @version 1.3.3
8    * @since 1.3.3
9    */
10  public class CastorObject {
11  
12    private String name;
13  
14    private Integer value;
15  
16    public String getName() {
17      return name;
18    }
19  
20    public void setName(String name) {
21      this.name = name;
22    }
23  
24    public Integer getValue() {
25      return value;
26    }
27  
28    public void setValue(Integer value) {
29      this.value = value;
30    }
31  }