Add missing license headers to packetcable-driver scd
[packetcable.git] / packetcable-driver / src / main / java / org / pcmm / state / IStateful.java
1 /**
2  @header@
3  */
4
5
6 package org.pcmm.state;
7
8 /**
9  * <p>
10  * Each stateful server should implement this interface, to be able to save and
11  * retrieve clients' state
12  * </p>
13  *
14  *
15  *
16  */
17 public interface IStateful {
18
19     /**
20      * records the collected client state
21      */
22     void recordState();
23
24     /**
25      *
26      * @return recorded state.
27      */
28     IState getRecoredState();
29
30 }