01: /* JFox, the OpenSource J2EE Application Server
02: *
03: * Copyright (C) 2002 huihoo.org
04: * Distributable under GNU LGPL license
05: * See the GNU Lesser General Public License for more details.
06: */
07:
08: package example.jmx.standard;
09:
10: /**
11: *
12: * @author <a href="mailto:young_yy@hotmail.org">Young Yang</a>
13: */
14:
15: public interface SimpleStandardMBean {
16: public String getState();
17:
18: public void setState(String s);
19:
20: public Integer getNbChanges();
21:
22: public void reset();
23:
24: public int deploy(String name, int i);
25:
26: public int withdraw(String name, int i, int t);
27:
28: public float getFloating();
29:
30: public void setFloating(float floating);
31:
32: public void setCount(int count);
33:
34: public int getCount();
35:
36: }
|