01: // serverSwitchAction.java
02: // -------------------------------------
03: // (C) by Michael Peter Christen; mc@anomic.de
04: // first published on http://www.anomic.de
05: // Frankfurt, Germany, 2005
06: // last major change: 11.05.2005
07: //
08: // This program is free software; you can redistribute it and/or modify
09: // it under the terms of the GNU General Public License as published by
10: // the Free Software Foundation; either version 2 of the License, or
11: // (at your option) any later version.
12: //
13: // This program is distributed in the hope that it will be useful,
14: // but WITHOUT ANY WARRANTY; without even the implied warranty of
15: // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16: // GNU General Public License for more details.
17: //
18: // You should have received a copy of the GNU General Public License
19: // along with this program; if not, write to the Free Software
20: // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21: //
22: // Using this software in any meaning (reading, learning, copying, compiling,
23: // running) means that you agree that the Author(s) is (are) not responsible
24: // for cost, loss of data or any harm that may be caused directly or indirectly
25: // by usage of this softare or this documentation. The usage of this software
26: // is on your own risk. The installation and usage (starting/running) of this
27: // software may allow other people or application to access your computer and
28: // any attached devices and is highly dependent on the configuration of the
29: // software which must be done by the user of the software; the author(s) is
30: // (are) also not responsible for proper configuration and usage of the
31: // software, even if provoked by documentation provided together with
32: // the software.
33: //
34: // Any changes to this file according to the GPL as documented in the file
35: // gpl.txt aside this file in the shipment you received can be done to the
36: // lines that follows this copyright notice here, but changes must not be
37: // done inside the copyright notive above. A re-distribution must contain
38: // the intact and unchanged copyright notice.
39: // Contributions and changes to the program code must be marked as such.
40:
41: package de.anomic.server;
42:
43: import de.anomic.server.logging.serverLog;
44:
45: public interface serverSwitchAction {
46:
47: // --------------------------------------------------------------------------
48: // the following methods are implemented by serverSwitchAsbtractAction
49: // and do not need to be altered
50:
51: public void setDescription(String shortText, String longText);
52:
53: // sets a visible description string
54:
55: public String getShortDescription();
56:
57: // returns short description string for online display
58:
59: public String getLongDescription();
60:
61: // returns long description string for online display
62:
63: public void setLog(serverLog log);
64:
65: // defines a log where process states can be written to
66:
67: // ---------------------------------------------------------------------
68: // the following methods are supposed to be implemented
69: // by extending a serverSwitchAbstractAction object
70:
71: public void doBevoreSetConfig(String key, String newvalue);
72:
73: public void doAfterSetConfig(String key, String newvalue,
74: String oldvalue);
75:
76: public void doWhenGetConfig(String key, String actualvalue,
77: String defaultvalue);
78:
79: public void close(); // called when an action is undeployed
80: }
|