| 1 |
tdb |
1.2 |
/* |
| 2 |
tdb |
1.3 |
* i-scream central monitoring system |
| 3 |
|
|
* http://www.i-scream.org.uk |
| 4 |
tdb |
1.2 |
* Copyright (C) 2000-2002 i-scream |
| 5 |
|
|
* |
| 6 |
|
|
* This program is free software; you can redistribute it and/or |
| 7 |
|
|
* modify it under the terms of the GNU General Public License |
| 8 |
|
|
* as published by the Free Software Foundation; either version 2 |
| 9 |
|
|
* of the License, or (at your option) any later version. |
| 10 |
|
|
* |
| 11 |
|
|
* This program is distributed in the hope that it will be useful, |
| 12 |
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 |
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 |
|
|
* GNU General Public License for more details. |
| 15 |
|
|
* |
| 16 |
|
|
* You should have received a copy of the GNU General Public License |
| 17 |
|
|
* along with this program; if not, write to the Free Software |
| 18 |
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 19 |
|
|
*/ |
| 20 |
|
|
|
| 21 |
pjm2 |
1.1 |
//---PACKAGE DECLARATION--- |
| 22 |
|
|
|
| 23 |
|
|
//---IMPORTS--- |
| 24 |
|
|
|
| 25 |
|
|
/** |
| 26 |
|
|
* JavaCLIParameters. |
| 27 |
|
|
* |
| 28 |
tdb |
1.3 |
* @author $Author: tdb $ |
| 29 |
|
|
* @version $Id: JavaCLIParameters.java,v 1.2 2002/05/18 18:15:56 tdb Exp $ |
| 30 |
pjm2 |
1.1 |
*/ |
| 31 |
|
|
public class JavaCLIParameters { |
| 32 |
|
|
|
| 33 |
|
|
//---FINAL ATTRIBUTES--- |
| 34 |
|
|
|
| 35 |
|
|
/** |
| 36 |
|
|
* The current CVS revision of this class |
| 37 |
|
|
*/ |
| 38 |
tdb |
1.3 |
public final String REVISION = "$Revision: 1.2 $"; |
| 39 |
pjm2 |
1.1 |
|
| 40 |
|
|
public static final String serverName = "localhost"; |
| 41 |
|
|
public static final int serverPort = 2345; |
| 42 |
|
|
|
| 43 |
|
|
public static final String[][] showData = { |
| 44 |
|
|
{"packet.attributes.machine_name", "Machine name"}, |
| 45 |
|
|
{"packet.load.load1", "Load 1"}, |
| 46 |
|
|
{"packet.attributes.ip", "I.P. Address"}, |
| 47 |
|
|
{"packet.load.load5", "Load 5"}, |
| 48 |
|
|
{"packet.load.load15", "Load 15"}}; |
| 49 |
|
|
|
| 50 |
|
|
//---STATIC METHODS--- |
| 51 |
|
|
|
| 52 |
|
|
//---CONSTRUCTORS--- |
| 53 |
|
|
|
| 54 |
|
|
//---PUBLIC METHODS--- |
| 55 |
|
|
|
| 56 |
|
|
//---PRIVATE METHODS--- |
| 57 |
|
|
|
| 58 |
|
|
//---ACCESSOR/MUTATOR METHODS--- |
| 59 |
|
|
|
| 60 |
|
|
//---ATTRIBUTES--- |
| 61 |
|
|
|
| 62 |
|
|
//---STATIC ATTRIBUTES--- |
| 63 |
|
|
|
| 64 |
|
|
} |