Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core.server/src/org/eclipse/osee/framework/core/server/IApplicationServerManager.java')
-rw-r--r--plugins/org.eclipse.osee.framework.core.server/src/org/eclipse/osee/framework/core/server/IApplicationServerManager.java118
1 files changed, 59 insertions, 59 deletions
diff --git a/plugins/org.eclipse.osee.framework.core.server/src/org/eclipse/osee/framework/core/server/IApplicationServerManager.java b/plugins/org.eclipse.osee.framework.core.server/src/org/eclipse/osee/framework/core/server/IApplicationServerManager.java
index 83909634dd1..a87ec374f43 100644
--- a/plugins/org.eclipse.osee.framework.core.server/src/org/eclipse/osee/framework/core/server/IApplicationServerManager.java
+++ b/plugins/org.eclipse.osee.framework.core.server/src/org/eclipse/osee/framework/core/server/IApplicationServerManager.java
@@ -1,59 +1,59 @@
-/*******************************************************************************
- * 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.core.server;
-
-import java.util.Collection;
-import java.util.Date;
-import java.util.List;
-import java.util.concurrent.ThreadFactory;
-import org.eclipse.osee.framework.core.exception.OseeCoreException;
-
-/**
- * @author Roberto E. Escobar
- */
-public interface IApplicationServerManager {
-
- void shutdown() throws OseeCoreException;
-
- ThreadFactory createNewThreadFactory(String name, int priority);
-
- boolean isSystemIdle();
-
- int getNumberOfActiveThreads();
-
- List<String> getCurrentProcesses();
-
- void setServletRequestsAllowed(boolean value) throws OseeCoreException;
-
- boolean executeLookupRegistration();
-
- String getId();
-
- String getServerAddress();
-
- int getPort();
-
- Date getDateStarted();
-
- boolean isAcceptingRequests();
-
- String[] getSupportedVersions();
-
- void addSupportedVersion(String version) throws OseeCoreException;
-
- void removeSupportedVersion(String version) throws OseeCoreException;
-
- void register(String context, OseeHttpServlet servlets) throws OseeCoreException;
-
- void unregister(String key);
-
- Collection<String> getRegisteredServlets();
-}
+/*******************************************************************************
+ * 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.core.server;
+
+import java.util.Collection;
+import java.util.Date;
+import java.util.List;
+import java.util.concurrent.ThreadFactory;
+import org.eclipse.osee.framework.core.exception.OseeCoreException;
+
+/**
+ * @author Roberto E. Escobar
+ */
+public interface IApplicationServerManager {
+
+ void shutdown() throws OseeCoreException;
+
+ ThreadFactory createNewThreadFactory(String name, int priority);
+
+ boolean isSystemIdle();
+
+ int getNumberOfActiveThreads();
+
+ List<String> getCurrentProcesses();
+
+ void setServletRequestsAllowed(boolean value) throws OseeCoreException;
+
+ boolean executeLookupRegistration();
+
+ String getId();
+
+ String getServerAddress();
+
+ int getPort();
+
+ Date getDateStarted();
+
+ boolean isAcceptingRequests();
+
+ String[] getSupportedVersions();
+
+ void addSupportedVersion(String version) throws OseeCoreException;
+
+ void removeSupportedVersion(String version) throws OseeCoreException;
+
+ void register(String context, OseeHttpServlet servlets) throws OseeCoreException;
+
+ void unregister(String key);
+
+ Collection<String> getRegisteredServlets();
+}

Back to the top