View Javadoc
1   package org.kuali.ole.ingest.form;
2   
3   import org.kuali.rice.krad.web.form.UifFormBase;
4   import org.springframework.web.multipart.MultipartFile;
5   
6   /**
7    * OleLocationForm is the Form class for Location Document
8    */
9   public class OleLocationForm extends UifFormBase {
10  
11      private MultipartFile locationFile;
12      private String message;
13      private String oleLocationSummaryId;
14  
15      /**
16       * Gets the locationFile attribute.
17       * @return returns the locationFile.
18       */
19      public MultipartFile getLocationFile() {
20          return locationFile;
21      }
22  
23      /**
24       * Sets the locationFile attribute value.
25       * @param locationFile The locationFile to set.
26       */
27      public void setLocationFile(MultipartFile locationFile) {
28          this.locationFile = locationFile;
29      }
30  
31      /**
32       * Gets the locationFile attribute.
33       * @return returns the locationFile.
34       */
35      public String getMessage() {
36          return message;
37      }
38  
39      /**
40       * Sets the message attribute value.
41       * @param message The message to set.
42       */
43      public void setMessage(String message) {
44          this.message = message;
45      }
46  
47      /**
48       * Gets the oleLocationSummaryId attribute.
49       * @return returns the oleLocationSummaryId.
50       */
51      public String getOleLocationSummaryId() {
52          return oleLocationSummaryId;
53      }
54  
55      /**
56       * Sets the oleLocationSummaryId attribute value.
57       * @param oleLocationSummaryId The oleLocationSummaryId to set.
58       */
59      public void setOleLocationSummaryId(String oleLocationSummaryId) {
60          this.oleLocationSummaryId = oleLocationSummaryId;
61      }
62  }