001    /**
002     * Copyright 2013 The Kuali Foundation Licensed under the
003     * Educational Community License, Version 2.0 (the "License"); you may
004     * not use this file except in compliance with the License. You may
005     * obtain a copy of the License at
006     *
007     * http://www.osedu.org/licenses/ECL-2.0
008     *
009     * Unless required by applicable law or agreed to in writing,
010     * software distributed under the License is distributed on an "AS IS"
011     * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
012     * or implied. See the License for the specific language governing
013     * permissions and limitations under the License.
014     *
015     * Created by christoff on 2013/01/11
016     */
017    package org.kuali.rice.krms.dto;
018    
019    import org.kuali.rice.krad.uif.container.Group;
020    
021    /**
022     * @author Christoff
023     * Date: 2013/01/10
024     */
025    public class TemplateInfo {
026    
027        private String termSpecName;
028        private String operator;
029        private String value;
030    
031        private String componentId;
032        private String constantComponentId;
033        private String componentBuilderClass;
034    
035        public String getTermSpecName() {
036            return termSpecName;
037        }
038    
039        public void setTermSpecName(String name) {
040            this.termSpecName = name;
041        }
042    
043        public String getOperator() {
044            return operator;
045        }
046    
047        public void setOperator(String operator) {
048            this.operator = operator;
049        }
050    
051        public String getValue() {
052            return value;
053        }
054    
055        public void setValue(String value) {
056            this.value = value;
057        }
058    
059        public String getComponentId() {
060            return componentId;
061        }
062    
063        public void setComponentId(String componentId) {
064            this.componentId = componentId;
065        }
066    
067        public String getConstantComponentId() {
068            return constantComponentId;
069        }
070    
071        public void setConstantComponentId(String constantComponentId) {
072            this.constantComponentId = constantComponentId;
073        }
074    
075        public String getComponentBuilderClass() {
076            return componentBuilderClass;
077        }
078    
079        public void setComponentBuilderClass(String componentBuilderClass) {
080            this.componentBuilderClass = componentBuilderClass;
081        }
082    }