Coverage Report - org.kuali.rice.kew.removereplace.web.RemoveReplaceRule
 
Classes in this File Line Coverage Branch Coverage Complexity
RemoveReplaceRule
0%
0/19
N/A
1
 
 1  
 /*
 2  
  * Copyright 2007 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.rice.kew.removereplace.web;
 17  
 
 18  
 import java.io.Serializable;
 19  
 
 20  
 import org.kuali.rice.kew.rule.RuleBaseValues;
 21  
 
 22  
 
 23  
 /**
 24  
  * This is a description of what this class does - ewestfal don't forget to fill this in.
 25  
  *
 26  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 27  
  *
 28  
  */
 29  0
 public class RemoveReplaceRule implements Serializable {
 30  
 
 31  0
     private RuleBaseValues rule = new RuleBaseValues();
 32  0
     private String ruleTemplateName = "";;
 33  0
     private String warning = "";
 34  
     private boolean isSelected;
 35  
     private boolean disabled;
 36  
 
 37  
     public boolean isSelected() {
 38  0
         return this.isSelected;
 39  
     }
 40  
     public void setSelected(boolean isSelected) {
 41  0
         this.isSelected = isSelected;
 42  0
     }
 43  
     public RuleBaseValues getRule() {
 44  0
         return this.rule;
 45  
     }
 46  
     public void setRule(RuleBaseValues rule) {
 47  0
         this.rule = rule;
 48  0
     }
 49  
     public String getRuleTemplateName() {
 50  0
         return this.ruleTemplateName;
 51  
     }
 52  
     public void setRuleTemplateName(String ruleTemplateName) {
 53  0
         this.ruleTemplateName = ruleTemplateName;
 54  0
     }
 55  
     public String getWarning() {
 56  0
         return warning;
 57  
     }
 58  
     public void setWarning(String warning) {
 59  0
         this.warning = warning;
 60  0
     }
 61  
     public boolean isDisabled() {
 62  0
         return this.disabled;
 63  
     }
 64  
     public void setDisabled(boolean disabled) {
 65  0
         this.disabled = disabled;
 66  0
     }
 67  
 
 68  
 }