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/SessionUtil.java')
-rw-r--r--plugins/org.eclipse.osee.framework.core.server/src/org/eclipse/osee/framework/core/server/SessionUtil.java92
1 files changed, 46 insertions, 46 deletions
diff --git a/plugins/org.eclipse.osee.framework.core.server/src/org/eclipse/osee/framework/core/server/SessionUtil.java b/plugins/org.eclipse.osee.framework.core.server/src/org/eclipse/osee/framework/core/server/SessionUtil.java
index b92285f43a1..551536ef45b 100644
--- a/plugins/org.eclipse.osee.framework.core.server/src/org/eclipse/osee/framework/core/server/SessionUtil.java
+++ b/plugins/org.eclipse.osee.framework.core.server/src/org/eclipse/osee/framework/core/server/SessionUtil.java
@@ -1,46 +1,46 @@
-/*******************************************************************************
- * 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.io.ByteArrayOutputStream;
-import java.net.URL;
-import org.eclipse.osee.framework.core.exception.OseeCoreException;
-import org.eclipse.osee.framework.core.exception.OseeExceptions;
-import org.eclipse.osee.framework.core.util.HttpProcessor;
-import org.eclipse.osee.framework.core.util.HttpProcessor.AcquireResult;
-import org.eclipse.osee.framework.jdk.core.util.Strings;
-
-public final class SessionUtil {
-
- private SessionUtil() {
-
- }
-
- public static boolean isAlive(ISession session) throws OseeCoreException {
- boolean wasAlive = false;
- try {
- ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
- URL url =
- new URL(String.format("http://%s:%s/osee/request?cmd=pingId", session.getClientAddress(),
- session.getClientPort()));
- AcquireResult result = HttpProcessor.acquire(url, outputStream);
- if (result.wasSuccessful()) {
- String sessionId = outputStream.toString(result.getEncoding());
- if (Strings.isValid(sessionId)) {
- wasAlive = sessionId.contains(session.getGuid());
- }
- }
- } catch (Exception ex) {
- OseeExceptions.wrapAndThrow(ex);
- }
- return wasAlive;
- }
-}
+/*******************************************************************************
+ * 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.io.ByteArrayOutputStream;
+import java.net.URL;
+import org.eclipse.osee.framework.core.exception.OseeCoreException;
+import org.eclipse.osee.framework.core.exception.OseeExceptions;
+import org.eclipse.osee.framework.core.util.HttpProcessor;
+import org.eclipse.osee.framework.core.util.HttpProcessor.AcquireResult;
+import org.eclipse.osee.framework.jdk.core.util.Strings;
+
+public final class SessionUtil {
+
+ private SessionUtil() {
+
+ }
+
+ public static boolean isAlive(ISession session) throws OseeCoreException {
+ boolean wasAlive = false;
+ try {
+ ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
+ URL url =
+ new URL(String.format("http://%s:%s/osee/request?cmd=pingId", session.getClientAddress(),
+ session.getClientPort()));
+ AcquireResult result = HttpProcessor.acquire(url, outputStream);
+ if (result.wasSuccessful()) {
+ String sessionId = outputStream.toString(result.getEncoding());
+ if (Strings.isValid(sessionId)) {
+ wasAlive = sessionId.contains(session.getGuid());
+ }
+ }
+ } catch (Exception ex) {
+ OseeExceptions.wrapAndThrow(ex);
+ }
+ return wasAlive;
+ }
+}

Back to the top