Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.wst.ws.explorer/src/org/eclipse/wst/ws/internal/explorer/JettyRunnable.java')
-rw-r--r--bundles/org.eclipse.wst.ws.explorer/src/org/eclipse/wst/ws/internal/explorer/JettyRunnable.java55
1 files changed, 0 insertions, 55 deletions
diff --git a/bundles/org.eclipse.wst.ws.explorer/src/org/eclipse/wst/ws/internal/explorer/JettyRunnable.java b/bundles/org.eclipse.wst.ws.explorer/src/org/eclipse/wst/ws/internal/explorer/JettyRunnable.java
deleted file mode 100644
index e3742c974..000000000
--- a/bundles/org.eclipse.wst.ws.explorer/src/org/eclipse/wst/ws/internal/explorer/JettyRunnable.java
+++ /dev/null
@@ -1,55 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2002, 2005 IBM Corporation and others.
- * 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:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-
-package org.eclipse.wst.ws.internal.explorer;
-
-import org.eclipse.help.internal.appserver.AppserverPlugin;
-
-
-public class JettyRunnable {
-
- private static JettyRunnable jettyRunnable_;
-
- private JettyRunnable() {
- }
-
- public static JettyRunnable getJettyRunnable() {
- if (jettyRunnable_ == null) {
- jettyRunnable_ = new JettyRunnable();
- jettyRunnable_.init();
- }
- return jettyRunnable_;
- }
-
- public boolean isJettyStarted() {
- try {
- return AppserverPlugin.getDefault().getAppServer().isRunning();
- } catch (Throwable t) {
- return false;
- }
- }
-
- public int getJettyPort() {
- return WebappManager.getPort();
- }
-
- public String getJettyHost() {
- return WebappManager.getHost();
- }
-
-
- private void init() {
- try {
- WebappManager.start("wse");
- } catch (Throwable t) {
- }
- }
-}

Back to the top