View Javadoc
1   package org.kuali.student.enrollment.class2.registration.admin.form;
2   
3   import java.util.List;
4   
5   /**
6    * Created with IntelliJ IDEA.
7    * User: Blue Team (SA)
8    * Date: 17 July 2014
9    * Utility Class for common auto generated reg group functions
10   */
11  public class RegistrationResultItem {
12  
13      private String description;
14  
15      private String holdIssueId;
16  
17      public RegistrationResultItem(String description) {
18          if(description==null){
19              throw new IllegalArgumentException("Description can not be null.");
20          }
21          this.description = description;
22      }
23  
24      public String getDescription() {
25          return description;
26      }
27  
28      public void setDescription(String description) {
29          this.description = description;
30      }
31  
32      public String getHoldIssueId() {
33          return holdIssueId;
34      }
35  
36      public void setHoldIssueId(String holdIssueId) {
37          this.holdIssueId = holdIssueId;
38      }
39  }