Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.osee.framework.core.server/src/org/eclipse/osee/framework/core/server/IApplicationServerManager.java')
-rw-r--r--org.eclipse.osee.framework.core.server/src/org/eclipse/osee/framework/core/server/IApplicationServerManager.java43
1 files changed, 43 insertions, 0 deletions
diff --git a/org.eclipse.osee.framework.core.server/src/org/eclipse/osee/framework/core/server/IApplicationServerManager.java b/org.eclipse.osee.framework.core.server/src/org/eclipse/osee/framework/core/server/IApplicationServerManager.java
new file mode 100644
index 00000000000..95f54b80c16
--- /dev/null
+++ b/org.eclipse.osee.framework.core.server/src/org/eclipse/osee/framework/core/server/IApplicationServerManager.java
@@ -0,0 +1,43 @@
+/*******************************************************************************
+ * 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.List;
+import java.util.concurrent.ThreadFactory;
+import org.eclipse.osee.framework.db.connection.exception.OseeCoreException;
+
+/**
+ * @author Roberto E. Escobar
+ */
+public interface IApplicationServerManager {
+
+ public void shutdown() throws OseeCoreException;
+
+ public ThreadFactory createNewThreadFactory(String name, int priority);
+
+ public boolean isSystemIdle();
+
+ public int getNumberOfActiveThreads();
+
+ public List<String> getCurrentProcesses();
+
+ public void setServletRequestsAllowed(boolean value) throws OseeCoreException;
+
+ public boolean executeLookupRegistration();
+
+ public String getId();
+
+ public String[] getSupportedVersions();
+
+ public void addSupportedVersion(String version) throws OseeCoreException;
+
+ public void removeSupportedVersion(String version) throws OseeCoreException;
+}

Back to the top