Uses of Interface
org.kuali.rice.core.api.parameter.ParameterEvaluator
-
Packages that use ParameterEvaluator Package Description org.kuali.rice.core.api.parameter org.kuali.rice.core.impl.parameter -
-
Uses of ParameterEvaluator in org.kuali.rice.core.api.parameter
Methods in org.kuali.rice.core.api.parameter that return ParameterEvaluator Modifier and Type Method Description ParameterEvaluatorParameterEvaluatorService. getParameterEvaluator(Class<? extends Object> componentClass, String parameterName)This method will return an instance of a ParameterEvaluator implementation that will wrap a Parameter and provide convenient evaluation methods.ParameterEvaluatorParameterEvaluatorService. getParameterEvaluator(Class<? extends Object> componentClass, String parameterName, String constrainedValue)This method will return an instance of a ParameterEvaluator implementation that will wrap a Parameter and constrainedValue and provide convenient evaluation methods.ParameterEvaluatorParameterEvaluatorService. getParameterEvaluator(Class<? extends Object> componentClass, String parameterName, String constrainingValue, String constrainedValue)This method will return an instance of a ParameterEvaluator implementation that will wrap a Parameter, constrainingValue, and constrainedValue and provide convenient evaluation methods.ParameterEvaluatorParameterEvaluatorService. getParameterEvaluator(Class<? extends Object> componentClass, String allowParameterName, String denyParameterName, String constrainingValue, String constrainedValue)This method will return an instance of a ParameterEvaluator implementation that will wrap an allow Parameter, a deny Parameter, constrainingValue, and constrainedValue and provide convenient evaluation methods.ParameterEvaluatorParameterEvaluatorService. getParameterEvaluator(String namespaceCode, String detailTypeCode, String parameterName)This method will return an instance of a ParameterEvaluator implementation that will wrap a Parameter and provide convenient evaluation methods.ParameterEvaluatorParameterEvaluatorService. getParameterEvaluator(String namespaceCode, String detailTypeCode, String parameterName, String constrainedValue)This method will return an instance of a ParameterEvaluator implementation that will wrap a Parameter and constrainedValue and provide convenient evaluation methods. -
Uses of ParameterEvaluator in org.kuali.rice.core.impl.parameter
Classes in org.kuali.rice.core.impl.parameter that implement ParameterEvaluator Modifier and Type Class Description classAlwaysSucceedParameterEvaluatorImplThis implementation of ParameterEvaluator is returned by ParameterServiceImpl when evaluation involves a constraining value and neither the allow nor deny parameter have restrictions for that value.classParameterEvaluatorImplMethods in org.kuali.rice.core.impl.parameter that return ParameterEvaluator Modifier and Type Method Description static ParameterEvaluatorAlwaysSucceedParameterEvaluatorImpl. getInstance()ParameterEvaluatorParameterEvaluatorServiceImpl. getParameterEvaluator(Class componentClass, String parameterName)This method will return an instance of the parameterEvaluator bean defined in Spring, initialized with the Parameter corresponding to the specified componentClass and parameterName and the values of the Parameter.ParameterEvaluatorParameterEvaluatorServiceImpl. getParameterEvaluator(Class componentClass, String parameterName, String constrainedValue)This method will return an instance of the parameterEvaluator bean defined in Spring, initialized with the Parameter corresponding to the specified componentClass and parameterName, the values of the Parameter, the knowledge of whether the values are allowed or denied, and the constrainedValue.ParameterEvaluatorParameterEvaluatorServiceImpl. getParameterEvaluator(Class componentClass, String parameterName, String constrainingValue, String constrainedValue)This method will return an instance of the parameterEvaluator bean defined in Spring, initialized with the Parameter corresponding to the specified componentClass and parameterName, the values of the Parameter that correspond to the specified constrainingValue, the knowledge of whether the values are allowed or denied, and the constrainedValue.ParameterEvaluatorParameterEvaluatorServiceImpl. getParameterEvaluator(Class componentClass, String allowParameterName, String denyParameterName, String constrainingValue, String constrainedValue)This method will return an instance of the parameterEvaluator bean defined in Spring, initialized with the Parameter corresponding to the specified componentClass and allowParameterName or to the specified componentClass and denyParameterName (depending on which restricts based on the constraining value) or an instance of AlwaysSucceedParameterEvaluatorImpl if neither restricts, the values of the Parameter that correspond to the specified constrainingValue, the knowledge of whether the values are allowed or denied, and the constrainedValue.ParameterEvaluatorParameterEvaluatorServiceImpl. getParameterEvaluator(String namespaceCode, String detailTypeCode, String parameterName)This method will return an instance of the parameterEvaluator bean defined in Spring, initialized with the Parameter corresponding to the specified componentClass and parameterName and the values of the Parameter.ParameterEvaluatorParameterEvaluatorServiceImpl. getParameterEvaluator(String namespaceCode, String detailTypeCode, String parameterName, String constrainedValue)This method will return an instance of the parameterEvaluator bean defined in Spring, initialized with the Parameter corresponding to the specified componentClass and parameterName and the values of the Parameter.
-