View Javadoc
1   package org.kuali.ole.batch.bo;
2   
3   /**
4    * Created with IntelliJ IDEA.
5    * User: maheswarang
6    * Date: 8/7/13
7    * Time: 8:08 PM
8    * To change this template use File | Settings | File Templates.
9    */
10  public class OLEOverDueNotice {
11      private String fileName;
12      private String fileLocation;
13  
14      public String getFileName() {
15          return fileName;
16      }
17  
18      public void setFileName(String fileName) {
19          this.fileName = fileName;
20      }
21  
22      public String getFileLocation() {
23          return fileLocation;
24      }
25  
26      public void setFileLocation(String fileLocation) {
27          this.fileLocation = fileLocation;
28      }
29  }