Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.server.admin/src/org/eclipse/osee/framework/server/admin/management/ServerShutdownWorker.java')
-rw-r--r--plugins/org.eclipse.osee.framework.server.admin/src/org/eclipse/osee/framework/server/admin/management/ServerShutdownWorker.java140
1 files changed, 70 insertions, 70 deletions
diff --git a/plugins/org.eclipse.osee.framework.server.admin/src/org/eclipse/osee/framework/server/admin/management/ServerShutdownWorker.java b/plugins/org.eclipse.osee.framework.server.admin/src/org/eclipse/osee/framework/server/admin/management/ServerShutdownWorker.java
index 90120979c09..ec4fc15bcf6 100644
--- a/plugins/org.eclipse.osee.framework.server.admin/src/org/eclipse/osee/framework/server/admin/management/ServerShutdownWorker.java
+++ b/plugins/org.eclipse.osee.framework.server.admin/src/org/eclipse/osee/framework/server/admin/management/ServerShutdownWorker.java
@@ -1,70 +1,70 @@
-/*******************************************************************************
- * Copyright (c) 2004, 2007 Boeing.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Boeing - initial API and implementation
- *******************************************************************************/
-package org.eclipse.osee.framework.server.admin.management;
-
-import org.eclipse.core.runtime.IProgressMonitor;
-import org.eclipse.core.runtime.Platform;
-import org.eclipse.osee.framework.core.server.IApplicationServerManager;
-import org.eclipse.osee.framework.server.admin.BaseServerCommand;
-import org.eclipse.osee.framework.server.admin.internal.Activator;
-import org.eclipse.osgi.framework.console.CommandInterpreter;
-import org.osgi.framework.Bundle;
-
-/**
- * @author Roberto E. Escobar
- */
-class ServerShutdownWorker extends BaseServerCommand {
-
- private final static String OSEE_ONLY_OPTION = "-oseeOnly";
- private final static String OSEE_SHUTDOWN_COMPLETE = "Osee Shutdown Complete";
- private boolean isOseeOnly;
- private boolean isFirstTime;
-
- protected ServerShutdownWorker(CommandInterpreter ci) {
- super("Server Shutdown", ci);
- isOseeOnly = false;
- isFirstTime = true;
- }
-
- @Override
- protected void doCommandWork(IProgressMonitor monitor) throws Exception {
- IApplicationServerManager manager = Activator.getInstance().getApplicationServerManager();
-
- Bundle equinoxHttpBundle = Platform.getBundle("org.eclipse.equinox.http.jetty");
- equinoxHttpBundle.stop();
-
- manager.setServletRequestsAllowed(false);
-
- while (!manager.isSystemIdle()) {
- try {
- Thread.sleep(5000);
- } catch (InterruptedException ex) {
- printStackTrace(ex);
- }
- }
- manager.shutdown();
-
- if (isOseeOnly()) {
- println(OSEE_SHUTDOWN_COMPLETE);
- } else {
- getCommandInterpreter().execute("close");
- }
- }
-
- private synchronized boolean isOseeOnly() {
- if (isFirstTime) {
- isFirstTime = false;
- String cmd = getCommandInterpreter().nextArgument();
- isOseeOnly = OSEE_ONLY_OPTION.equalsIgnoreCase(cmd);
- }
- return isOseeOnly;
- }
-}
+/*******************************************************************************
+ * Copyright (c) 2004, 2007 Boeing.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Boeing - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.osee.framework.server.admin.management;
+
+import org.eclipse.core.runtime.IProgressMonitor;
+import org.eclipse.core.runtime.Platform;
+import org.eclipse.osee.framework.core.server.IApplicationServerManager;
+import org.eclipse.osee.framework.server.admin.BaseServerCommand;
+import org.eclipse.osee.framework.server.admin.internal.Activator;
+import org.eclipse.osgi.framework.console.CommandInterpreter;
+import org.osgi.framework.Bundle;
+
+/**
+ * @author Roberto E. Escobar
+ */
+class ServerShutdownWorker extends BaseServerCommand {
+
+ private final static String OSEE_ONLY_OPTION = "-oseeOnly";
+ private final static String OSEE_SHUTDOWN_COMPLETE = "Osee Shutdown Complete";
+ private boolean isOseeOnly;
+ private boolean isFirstTime;
+
+ protected ServerShutdownWorker(CommandInterpreter ci) {
+ super("Server Shutdown", ci);
+ isOseeOnly = false;
+ isFirstTime = true;
+ }
+
+ @Override
+ protected void doCommandWork(IProgressMonitor monitor) throws Exception {
+ IApplicationServerManager manager = Activator.getInstance().getApplicationServerManager();
+
+ Bundle equinoxHttpBundle = Platform.getBundle("org.eclipse.equinox.http.jetty");
+ equinoxHttpBundle.stop();
+
+ manager.setServletRequestsAllowed(false);
+
+ while (!manager.isSystemIdle()) {
+ try {
+ Thread.sleep(5000);
+ } catch (InterruptedException ex) {
+ printStackTrace(ex);
+ }
+ }
+ manager.shutdown();
+
+ if (isOseeOnly()) {
+ println(OSEE_SHUTDOWN_COMPLETE);
+ } else {
+ getCommandInterpreter().execute("close");
+ }
+ }
+
+ private synchronized boolean isOseeOnly() {
+ if (isFirstTime) {
+ isFirstTime = false;
+ String cmd = getCommandInterpreter().nextArgument();
+ isOseeOnly = OSEE_ONLY_OPTION.equalsIgnoreCase(cmd);
+ }
+ return isOseeOnly;
+ }
+}

Back to the top