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    * StaffUploadForm is the Form class for Staff Upload Document
8    */
9   public class StaffUploadForm extends UifFormBase {
10  
11      private MultipartFile marcFile;
12  
13      private MultipartFile ediFile;
14  
15      private String agenda;
16  
17      private String agendaDescription;
18  
19      private String message;
20  
21      private String loadReportURL;
22  
23      private String user;
24      /**
25       * Gets the marcFile attribute.
26       * @return Returns the marcFile.
27       */
28      public MultipartFile getMarcFile() {
29          return marcFile;
30      }
31      /**
32       * Sets the marcFile attribute value.
33       * @param marcFile The marcFile to set.
34       */
35      public void setMarcFile(MultipartFile marcFile) {
36          this.marcFile = marcFile;
37      }
38      /**
39       * Gets the ediFile attribute.
40       * @return Returns the ediFile.
41       */
42      public MultipartFile getEdiFile() {
43          return ediFile;
44      }
45      /**
46       * Sets the ediFile attribute value.
47       * @param ediFile The ediFile to set.
48       */
49      public void setEdiFile(MultipartFile ediFile) {
50          this.ediFile = ediFile;
51      }
52      /**
53       * Gets the agenda attribute.
54       * @return Returns the agenda.
55       */
56      public String getAgenda() {
57          return agenda;
58      }
59      /**
60       * Sets the agenda attribute value.
61       * @param agenda The agenda to set.
62       */
63      public void setAgenda(String agenda) {
64          this.agenda = agenda;
65      }
66      /**
67       * Gets the agendaDescription attribute.
68       * @return Returns the agendaDescription.
69       */
70      public String getAgendaDescription() {
71          return agendaDescription;
72      }
73      /**
74       * Sets the agendaDescription attribute value.
75       * @param agendaDescription The agendaDescription to set.
76       */
77      public void setAgendaDescription(String agendaDescription) {
78          this.agendaDescription = agendaDescription;
79      }
80      /**
81       * Gets the message attribute.
82       * @return Returns the message.
83       */
84      public String getMessage() {
85          return message;
86      }
87      /**
88       * Sets the profileFile message value.
89       * @param message The message to set.
90       */
91      public void setMessage(String message) {
92          this.message = message;
93      }
94      /**
95       * Gets the loadReportURL attribute.
96       * @return Returns the loadReportURL.
97       */
98      public String getLoadReportURL() {
99          return loadReportURL;
100     }
101     /**
102      * Sets the loadReportURL attribute value.
103      * @param loadReportURL The loadReportURL to set.
104      */
105     public void setLoadReportURL(String loadReportURL) {
106         this.loadReportURL = loadReportURL;
107     }
108 
109     public String getUser() {
110         return user;
111     }
112 
113     public void setUser(String user) {
114         this.user = user;
115     }
116 }