1 package org.kuali.ole.batch.bo;
2
3 /**
4 * Created with IntelliJ IDEA.
5 * User: ?
6 * Date: 9/25/13
7 * Time: 7:45 PM
8 * To change this template use File | Settings | File Templates.
9 */
10 public class OLEClaimNotice {
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 }