1 package org.lsst.ccs.config;
2
3 /**
4 * Call back methods called when a deprecation happens.
5 * @author bamade
6 */
7 // Date: 13/04/12
8
9 public interface DeprecationListener {
10 public void subsystemDeprecating(SubsystemDescription description) ;
11 public void configProfileDeprecating(ConfigProfile profile) ;
12 }