diff options
author | Bernard Normier <bernard@zeroc.com> | 2006-12-06 02:20:56 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2006-12-06 02:20:56 +0000 |
commit | 53ac546a2b3d91869218d36fdde46ca99c78e086 (patch) | |
tree | c6b07213ea676eccbc7cd86e610d3aa3e0b79abf /java/src/IceGridGUI/LiveDeployment/TreeNode.java | |
parent | Fix for bug #1574 (diff) | |
download | ice-53ac546a2b3d91869218d36fdde46ca99c78e086.tar.bz2 ice-53ac546a2b3d91869218d36fdde46ca99c78e086.tar.xz ice-53ac546a2b3d91869218d36fdde46ca99c78e086.zip |
Added ability to send signals
Diffstat (limited to 'java/src/IceGridGUI/LiveDeployment/TreeNode.java')
-rwxr-xr-x | java/src/IceGridGUI/LiveDeployment/TreeNode.java | 24 |
1 files changed, 19 insertions, 5 deletions
diff --git a/java/src/IceGridGUI/LiveDeployment/TreeNode.java b/java/src/IceGridGUI/LiveDeployment/TreeNode.java index 09ab1652f70..065ce0cff55 100755 --- a/java/src/IceGridGUI/LiveDeployment/TreeNode.java +++ b/java/src/IceGridGUI/LiveDeployment/TreeNode.java @@ -36,15 +36,24 @@ public abstract class TreeNode extends TreeNodeBase public static final int STOP = 1; public static final int ENABLE = 2; public static final int DISABLE = 3; + + public static final int SIGHUP = 4; + public static final int SIGINT = 5; + public static final int SIGQUIT = 6; + public static final int SIGKILL = 7; + public static final int SIGUSR1 = 8; + public static final int SIGUSR2 = 9; + public static final int SIGTERM = 10; + - public static final int SHUTDOWN_NODE = 4; - public static final int SHUTDOWN_REGISTRY = 5; + public static final int SHUTDOWN_NODE = 11; + public static final int SHUTDOWN_REGISTRY = 12; - public static final int PATCH_SERVER = 6; + public static final int PATCH_SERVER = 13; - public static final int ADD_OBJECT = 7; + public static final int ADD_OBJECT = 14; - static public final int ACTION_COUNT = 8; + static public final int ACTION_COUNT = 15; public boolean[] getAvailableActions() { @@ -67,6 +76,11 @@ public abstract class TreeNode extends TreeNodeBase { assert false; } + public void signal(String s) + { + assert false; + } + public void shutdownNode() { assert false; |