Coverage Report - org.apache.commons.latka.jelly.validators.RegexpTag
 
Classes in this File Line Coverage Branch Coverage Complexity
RegexpTag
0%
0/12
N/A
1
 
 1  
 /*
 2  
  * Copyright 1999-2001,2004 The Apache Software Foundation.
 3  
  * 
 4  
  * Licensed under the Apache 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.apache.org/licenses/LICENSE-2.0
 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  
 
 17  
 package org.apache.commons.latka.jelly.validators;
 18  
 
 19  
 import org.apache.commons.latka.Validator;
 20  
 import org.apache.commons.latka.validators.RegexpValidator;
 21  
 
 22  
 import org.apache.log4j.Category;
 23  
 
 24  
 /**
 25  
  * A class to match some part of the response body to a regular expression
 26  
  *
 27  
  * @author  dion
 28  
  * @version $Id: RegexpTag.java 155424 2005-02-26 13:09:29Z dirkv $
 29  
  */
 30  0
 public class RegexpTag extends HttpValidatorTagSupport {
 31  
     
 32  
     /** the regular expression pattern to match with */
 33  0
     private String _pattern = null;
 34  
     /** whether the match is to be case sensitive */
 35  0
     private boolean _ignoreCase = false;
 36  
     /** whether to expect success or failure */
 37  0
     private boolean _condition = true;
 38  
     
 39  0
     protected static final Category _log = Category.getInstance(RegexpTag.class);
 40  
 
 41  
     public Validator getValidator() {
 42  0
         return new RegexpValidator(_label,_pattern,_condition,_ignoreCase);
 43  
     }
 44  
         
 45  
     /** Setter for property ignoreCase.
 46  
      * @param ignoreCase New value of property ignoreCase.
 47  
      */
 48  
     public void setIgnoreCase(boolean ignoreCase) {
 49  0
         _ignoreCase = ignoreCase;
 50  0
     }
 51  
     
 52  
     /** Setter for property pattern.
 53  
      * @param pattern New value of property pattern.
 54  
      */
 55  
     public void setPattern(String pattern) {
 56  0
         _pattern = pattern;
 57  0
     }
 58  
 
 59  
     public void setCond(boolean condition) {
 60  0
         _condition = condition;
 61  0
     }
 62  
     
 63  
 }