summaryrefslogtreecommitdiff
path: root/java/src/IceGrid/TreeNode/CommonBase.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/src/IceGrid/TreeNode/CommonBase.java')
-rwxr-xr-xjava/src/IceGrid/TreeNode/CommonBase.java15
1 files changed, 14 insertions, 1 deletions
diff --git a/java/src/IceGrid/TreeNode/CommonBase.java b/java/src/IceGrid/TreeNode/CommonBase.java
index 377947dc52f..87e89ee4743 100755
--- a/java/src/IceGrid/TreeNode/CommonBase.java
+++ b/java/src/IceGrid/TreeNode/CommonBase.java
@@ -137,7 +137,15 @@ public interface CommonBase extends TreeCellRenderer
static final int ENABLE = 20;
static final int DISABLE = 21;
- static public final int ACTION_COUNT = 22;
+ static final int SHUTDOWN_NODE = 22;
+
+ static final int APPLICATION_REFRESH_INSTALLATION = 23;
+ static final int APPLICATION_REFRESH_INSTALLATION_NO_SHUTDOWN = 24;
+
+ static final int SERVER_REFRESH_INSTALLATION = 25;
+ static final int SERVER_REFRESH_INSTALLATION_NO_SHUTDOWN = 26;
+
+ static public final int ACTION_COUNT = 27;
boolean[] getAvailableActions();
@@ -167,5 +175,10 @@ public interface CommonBase extends TreeCellRenderer
void enable();
void disable();
+ void shutdownNode();
+
+ void applicationRefreshInstallation(boolean shutdown);
+ void serverRefreshInstallation(boolean shutdown);
+
JPopupMenu getPopupMenu();
}