View Javadoc
1   package org.kuali.student.enrollment.class2.acal.dto;
2   
3   import java.util.Date;
4   
5   /**
6    * This class represents the results of a calendar search (term, acal or holiday cal results)
7    */
8   public class AcalSearchResult {
9   
10      private String id;
11      private String name;
12      private Date startDate;
13      private Date endDate;
14      private String stateKey;
15      private String stateKeyDisplay;
16      private String acalSearchTypeKey;
17  
18      public Date getEndDate() {
19          return endDate;
20      }
21  
22      public void setEndDate(Date endDate) {
23          this.endDate = endDate;
24      }
25  
26      public String getId() {
27          return id;
28      }
29  
30      public void setId(String id) {
31          this.id = id;
32      }
33  
34      public String getName() {
35          return name;
36      }
37  
38      public void setName(String name) {
39          this.name = name;
40      }
41  
42      public Date getStartDate() {
43          return startDate;
44      }
45  
46      public void setStartDate(Date startDate) {
47          this.startDate = startDate;
48      }
49  
50      public String getStateKey() {
51          return stateKey;
52      }
53  
54      public void setStateKey(String stateKey) {
55          this.stateKey = stateKey;
56      }
57  
58      public String getStateKeyDisplay() {
59          return stateKeyDisplay;
60      }
61  
62      public void setStateKeyDisplay(String stateKeyDisplay) {
63          this.stateKeyDisplay = stateKeyDisplay;
64      }
65  
66  
67      public String getAcalSearchTypeKey() {
68          return acalSearchTypeKey;
69      }
70  
71      public void setAcalSearchTypeKey(String acalSearchTypeKey) {
72          this.acalSearchTypeKey = acalSearchTypeKey;
73      }
74  
75  }