01: /*
02: * Created on 22 Jul 2006
03: */
04: package uk.org.ponder.rsf.state.scope;
05:
06: /** An interface to signal that some selection of beans is to be destroyed **/
07:
08: publicinterface BeanDestroyer {
09:
10: publicvoid destroy();
11:
12: }