View Javadoc
1   package org.kuali.ole.systemintegration.rest.bo;
2   
3   /**
4    * Created with IntelliJ IDEA.
5    * User: sheiksalahudeenm
6    * Date: 3/10/14
7    * Time: 8:00 PM
8    * To change this template use File | Settings | File Templates.
9    */
10  public class SerialReceivingIndex {
11      private String enumerationCaption;
12      private String chronologyCaption;
13      private String publicReceiptNote;
14  
15      public String getEnumerationCaption() {
16          return enumerationCaption;
17      }
18  
19      public void setEnumerationCaption(String enumerationCaption) {
20          this.enumerationCaption = enumerationCaption;
21      }
22  
23      public String getChronologyCaption() {
24          return chronologyCaption;
25      }
26  
27      public void setChronologyCaption(String chronologyCaption) {
28          this.chronologyCaption = chronologyCaption;
29      }
30  
31      public String getPublicReceiptNote() {
32          return publicReceiptNote;
33      }
34  
35      public void setPublicReceiptNote(String publicReceiptNote) {
36          this.publicReceiptNote = publicReceiptNote;
37      }
38  }