Coverage Report - org.kuali.rice.core.api.parameter.ParameterEvaluatorService
 
Classes in this File Line Coverage Branch Coverage Complexity
ParameterEvaluatorService
N/A
N/A
1
 
 1  
 /**
 2  
  * Copyright 2005-2011 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.core.api.parameter;
 17  
 
 18  
 public interface ParameterEvaluatorService {
 19  
         /**
 20  
      * This method will return an instance of a ParameterEvaluator implementation that will wrap a Parameter and provide convenient
 21  
      * evaluation methods.
 22  
      *
 23  
      * @param componentClass
 24  
      * @param parameterName
 25  
      * @return ParameterEvaluator
 26  
      */
 27  
     public ParameterEvaluator getParameterEvaluator(Class<? extends Object> componentClass, String parameterName);
 28  
 
 29  
     /**
 30  
      * This method will return an instance of a ParameterEvaluator implementation that will wrap a Parameter and provide convenient
 31  
      * evaluation methods.
 32  
      *
 33  
      * @param namespaceCode
 34  
      * @param detailTypeCode
 35  
      * @param parameterName
 36  
      * @return ParameterEvaluator
 37  
      */
 38  
     public ParameterEvaluator getParameterEvaluator(String namespaceCode, String detailTypeCode, String parameterName);
 39  
 
 40  
     /**
 41  
      * This method will return an instance of a ParameterEvaluator implementation that will wrap a Parameter and constrainedValue
 42  
      * and provide convenient evaluation methods.
 43  
      *
 44  
      * @param componentClass
 45  
      * @param parameterName
 46  
      * @return ParameterEvaluator
 47  
      */
 48  
     public ParameterEvaluator getParameterEvaluator(Class<? extends Object> componentClass, String parameterName, String constrainedValue);
 49  
 
 50  
     /**
 51  
      * This method will return an instance of a ParameterEvaluator implementation that will wrap a Parameter and constrainedValue
 52  
      * and provide convenient evaluation methods.
 53  
      *
 54  
      * @param namespaceCode
 55  
      * @param detailTypeCode
 56  
      * @param parameterName
 57  
      * @return ParameterEvaluator
 58  
      */
 59  
     public ParameterEvaluator getParameterEvaluator(String namespaceCode, String detailTypeCode, String parameterName, String constrainedValue);
 60  
 
 61  
     /**
 62  
      * This method will return an instance of a ParameterEvaluator implementation that will wrap a Parameter, constrainingValue, and
 63  
      * constrainedValue and provide convenient evaluation methods.
 64  
      *
 65  
      * @param componentClass
 66  
      * @param parameterName
 67  
      * @return ParameterEvaluator
 68  
      */
 69  
     public ParameterEvaluator getParameterEvaluator(Class<? extends Object> componentClass, String parameterName, String constrainingValue, String constrainedValue);
 70  
 
 71  
     /**
 72  
      * This method will return an instance of a ParameterEvaluator implementation that will wrap an allow Parameter, a deny
 73  
      * Parameter, constrainingValue, and constrainedValue and provide convenient evaluation methods.
 74  
      *
 75  
      * @param componentClass
 76  
      * @param parameterName
 77  
      * @return ParameterEvaluator
 78  
      */
 79  
     public ParameterEvaluator getParameterEvaluator(Class<? extends Object> componentClass, String allowParameterName, String denyParameterName, String constrainingValue, String constrainedValue);
 80  
 }