1 package org.lsst.ccs.config;
2
3 // Date: 25/04/12
4
5 /**
6 * An object that is warned when two objects do not match.
7 * This can be used for instance in "repair" operation when an "old"
8 * ParameterConfiguration is matched against an active ParameterDescription.
9 * @author bamade
10 */
11 public interface ConfigurationMismatchListener {
12 public void mismatch(ParameterConfiguration config, AParameterDescription description, Object diagnosis);
13 }