001package org.kuali.ole.ingest.form;
002
003import org.kuali.rice.krad.web.form.UifFormBase;
004import org.springframework.web.multipart.MultipartFile;
005
006/**
007 * OleLocationForm is the Form class for Location Document
008 */
009public class OleLocationForm extends UifFormBase {
010
011    private MultipartFile locationFile;
012    private String message;
013    private String oleLocationSummaryId;
014
015    /**
016     * Gets the locationFile attribute.
017     * @return returns the locationFile.
018     */
019    public MultipartFile getLocationFile() {
020        return locationFile;
021    }
022
023    /**
024     * Sets the locationFile attribute value.
025     * @param locationFile The locationFile to set.
026     */
027    public void setLocationFile(MultipartFile locationFile) {
028        this.locationFile = locationFile;
029    }
030
031    /**
032     * Gets the locationFile attribute.
033     * @return returns the locationFile.
034     */
035    public String getMessage() {
036        return message;
037    }
038
039    /**
040     * Sets the message attribute value.
041     * @param message The message to set.
042     */
043    public void setMessage(String message) {
044        this.message = message;
045    }
046
047    /**
048     * Gets the oleLocationSummaryId attribute.
049     * @return returns the oleLocationSummaryId.
050     */
051    public String getOleLocationSummaryId() {
052        return oleLocationSummaryId;
053    }
054
055    /**
056     * Sets the oleLocationSummaryId attribute value.
057     * @param oleLocationSummaryId The oleLocationSummaryId to set.
058     */
059    public void setOleLocationSummaryId(String oleLocationSummaryId) {
060        this.oleLocationSummaryId = oleLocationSummaryId;
061    }
062}