01 /**
02 *
03 * All content copyright (c) 2003-2008 Terracotta, Inc.,
04 * except as may otherwise be noted in a separate copyright notice.
05 * All rights reserved.
06 *
07 */
08 package demo.jmx;
09
10 /**
11 * IHistory interface used to expose history data to JMX
12 *
13 *@author Terracotta, Inc.
14 */
15 public interface IHistory {
16 String[] getHistory();
17
18 boolean getEnabled();
19
20 void setEnabled(boolean enabled);
21
22 void reset();
23 }
|