View Javadoc
1   /**
2    * Copyright 2005-2013 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.student.enrollment.class1.krms.dto;
17  import org.kuali.rice.krms.api.repository.rule.RuleDefinitionContract;
18  import org.kuali.rice.krms.dto.AgendaEditor;
19  import org.kuali.rice.krms.dto.RuleEditor;
20  import org.kuali.rice.krms.dto.RuleTypeInfo;
21  import org.kuali.student.lum.lu.ui.krms.dto.LURuleEditor;
22  
23  import java.util.ArrayList;
24  import java.util.List;
25  
26  /**
27   * @author Kuali Student Team
28   */
29  public class AORuleEditor extends LURuleEditor {
30  
31      private static final long serialVersionUID = 1L;
32      private RuleEditor cluEditor;
33  
34  
35      public AORuleEditor(){
36          super();
37      }
38      public AORuleEditor(RuleDefinitionContract definition){
39          super(definition);
40      }
41  
42      public AORuleEditor(String key, boolean dummy, RuleTypeInfo ruleTypeInfo) {
43          super(key, dummy, ruleTypeInfo);
44      }
45  
46      public RuleEditor getCluEditor() {
47          return cluEditor;
48      }
49  
50      public void setCluEditor(RuleEditor cluEditor) {
51          this.cluEditor = cluEditor;
52      }
53  }