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.notification;
09:
10: /**
11: *
12: * @author <a href="mailto:young_yy@hotmail.org">Young Yang</a>
13: */
14:
15: public interface SimpleNotificationMBean {
16: String getWord();
17:
18: void setWord(String _word);
19:
20: void printWord();
21: }
|