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 * Gets the marcFile attribute.
24 * @return Returns the marcFile.
25 */
26 public MultipartFile getMarcFile() {
27 return marcFile;
28 }
29 /**
30 * Sets the marcFile attribute value.
31 * @param marcFile The marcFile to set.
32 */
33 public void setMarcFile(MultipartFile marcFile) {
34 this.marcFile = marcFile;
35 }
36 /**
37 * Gets the ediFile attribute.
38 * @return Returns the ediFile.
39 */
40 public MultipartFile getEdiFile() {
41 return ediFile;
42 }
43 /**
44 * Sets the ediFile attribute value.
45 * @param ediFile The ediFile to set.
46 */
47 public void setEdiFile(MultipartFile ediFile) {
48 this.ediFile = ediFile;
49 }
50 /**
51 * Gets the agenda attribute.
52 * @return Returns the agenda.
53 */
54 public String getAgenda() {
55 return agenda;
56 }
57 /**
58 * Sets the agenda attribute value.
59 * @param agenda The agenda to set.
60 */
61 public void setAgenda(String agenda) {
62 this.agenda = agenda;
63 }
64 /**
65 * Gets the agendaDescription attribute.
66 * @return Returns the agendaDescription.
67 */
68 public String getAgendaDescription() {
69 return agendaDescription;
70 }
71 /**
72 * Sets the agendaDescription attribute value.
73 * @param agendaDescription The agendaDescription to set.
74 */
75 public void setAgendaDescription(String agendaDescription) {
76 this.agendaDescription = agendaDescription;
77 }
78 /**
79 * Gets the message attribute.
80 * @return Returns the message.
81 */
82 public String getMessage() {
83 return message;
84 }
85 /**
86 * Sets the profileFile message value.
87 * @param message The message to set.
88 */
89 public void setMessage(String message) {
90 this.message = message;
91 }
92 /**
93 * Gets the loadReportURL attribute.
94 * @return Returns the loadReportURL.
95 */
96 public String getLoadReportURL() {
97 return loadReportURL;
98 }
99 /**
100 * Sets the loadReportURL attribute value.
101 * @param loadReportURL The loadReportURL to set.
102 */
103 public void setLoadReportURL(String loadReportURL) {
104 this.loadReportURL = loadReportURL;
105 }
106 }