1 package org.lsst.ccs.config;
2
3 /**
4 * Filters a parameter: given its name and or a value accept or reject it to be included
5 * in a list of ParameterDescription (that is a list of Parameter open for modifications).
6 */
7 public interface ParameterFilter {
8 public boolean filter(String parameterName, Object value) ;
9 }