View Javadoc

1   package edu.sampleu.travel.bo;
2   
3   import java.io.Serializable;
4   
5   /**
6    * Wrapper class for exposing remote attribute definitions
7    *
8    * @author Kuali Rice Team (rice.collab@kuali.org)
9    */
10  public class SampleAppAttributes implements Serializable {
11      private static final long serialVersionUID = -5536424163658038143L;
12  
13      private String number;
14      private String foId;
15  
16      public SampleAppAttributes() {
17  
18      }
19  
20      public String getNumber() {
21          return number;
22      }
23  
24      public void setNumber(String number) {
25          this.number = number;
26      }
27  
28      public String getFoId() {
29          return foId;
30      }
31  
32      public void setFoId(String foId) {
33          this.foId = foId;
34      }
35  }