View Javadoc

1   /**
2    * Copyright 2013 The Kuali Foundation Licensed under the
3    * Educational Community License, Version 2.0 (the "License"); you may
4    * not use this file except in compliance with the License. You may
5    * obtain a copy of the License at
6    *
7    * http://www.osedu.org/licenses/ECL-2.0
8    *
9    * Unless required by applicable law or agreed to in writing,
10   * software distributed under the License is distributed on an "AS IS"
11   * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12   * or implied. See the License for the specific language governing
13   * permissions and limitations under the License.
14   *
15   * Created by christoff on 2013/01/11
16   */
17  package org.kuali.rice.krms.dto;
18  
19  import org.kuali.rice.krad.uif.container.Group;
20  
21  /**
22   * @author Christoff
23   * Date: 2013/01/10
24   */
25  public class TemplateInfo {
26  
27      private String termSpecName;
28      private String operator;
29      private String value;
30  
31      private String componentId;
32      private String constantComponentId;
33      private String componentBuilderClass;
34  
35      public String getTermSpecName() {
36          return termSpecName;
37      }
38  
39      public void setTermSpecName(String name) {
40          this.termSpecName = name;
41      }
42  
43      public String getOperator() {
44          return operator;
45      }
46  
47      public void setOperator(String operator) {
48          this.operator = operator;
49      }
50  
51      public String getValue() {
52          return value;
53      }
54  
55      public void setValue(String value) {
56          this.value = value;
57      }
58  
59      public String getComponentId() {
60          return componentId;
61      }
62  
63      public void setComponentId(String componentId) {
64          this.componentId = componentId;
65      }
66  
67      public String getConstantComponentId() {
68          return constantComponentId;
69      }
70  
71      public void setConstantComponentId(String constantComponentId) {
72          this.constantComponentId = constantComponentId;
73      }
74  
75      public String getComponentBuilderClass() {
76          return componentBuilderClass;
77      }
78  
79      public void setComponentBuilderClass(String componentBuilderClass) {
80          this.componentBuilderClass = componentBuilderClass;
81      }
82  }