001package org.kuali.ole.batch.bo;
002
003/**
004 * Created with IntelliJ IDEA.
005 * User: maheswarang
006 * Date: 8/7/13
007 * Time: 8:01 PM
008 * To change this template use File | Settings | File Templates.
009 */
010public class OLEOnHoldNotice {
011    private String fileName;
012    private String fileLocation;
013
014    public String getFileName() {
015        return fileName;
016    }
017
018    public void setFileName(String fileName) {
019        this.fileName = fileName;
020    }
021
022    public String getFileLocation() {
023        return fileLocation;
024    }
025
026    public void setFileLocation(String fileLocation) {
027        this.fileLocation = fileLocation;
028    }
029}