01: /*
02: * Created on 15-Jan-2006
03: */
04: package uk.org.ponder.rsf.state;
05:
06: /** An interface for beans wanting to be informed of flow lifecycle events.
07: * Note that these may arise through the flow being actively launched or
08: * terminated, or through the flow's passive expiration through some means
09: * or other.
10: * @author Antranig Basman (amb26@ponder.org.uk)
11: *
12: */
13:
14: public interface TokenLifetimeAware {
15: public void lifetimeStart(String tokenid);
16:
17: public void lifetimeEnd(String tokenid);
18: }
|