diff options
Diffstat (limited to 'java/src/SuspendNode.java')
-rw-r--r-- | java/src/SuspendNode.java | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/java/src/SuspendNode.java b/java/src/SuspendNode.java deleted file mode 100644 index 5b16a368458..00000000000 --- a/java/src/SuspendNode.java +++ /dev/null @@ -1,34 +0,0 @@ -/************************************************* - * - * = PACKAGE - * JACE.ServiceConfigurator - * - * = FILENAME - * SuspendNode.java - * - * Used when a service is specified to be suspended based on a line - * in a service configurator file. The actual implementation of the - * service being suspended does the work. - * - *@author Everett Anderson - * - *************************************************/ -package JACE.ServiceConfigurator; - -import java.io.*; -import JACE.OS.*; - -class SuspendNode extends ParseNode -{ - public SuspendNode () - { - } - - public void apply () - { - ACE.DEBUG("Suspend Node apply: " + this.name_); - - if (JACE.ServiceConfigurator.ServiceConfig.suspend(this.name_) == -1) - ACE.ERROR("Error suspending " + this.name_); - } -}; |