Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2005-05-02 07:09:06 +0000
committerslewis2005-05-02 07:09:06 +0000
commit4e26b5a761af2bd05153d7d901060082a2ec6ff8 (patch)
treebc75f61839d3effd761bcedeece7834cddd287ec
parent93a39c2983ae889ee07a62fb9a3868733ec55ecb (diff)
downloadorg.eclipse.ecf-4e26b5a761af2bd05153d7d901060082a2ec6ff8.tar.gz
org.eclipse.ecf-4e26b5a761af2bd05153d7d901060082a2ec6ff8.tar.xz
org.eclipse.ecf-4e26b5a761af2bd05153d7d901060082a2ec6ff8.zip
Added IJoinContext interface for generalizing ISharedObjectContainer.joinGroup() parameters
-rw-r--r--framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/IJoinContext.java17
1 files changed, 17 insertions, 0 deletions
diff --git a/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/IJoinContext.java b/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/IJoinContext.java
new file mode 100644
index 000000000..63c61b464
--- /dev/null
+++ b/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/IJoinContext.java
@@ -0,0 +1,17 @@
+/*******************************************************************************
+ * Copyright (c) 2004 Composent, Inc. 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: Composent, Inc. - initial API and implementation
+ ******************************************************************************/
+
+package org.eclipse.ecf.core;
+
+import javax.security.auth.callback.CallbackHandler;
+
+public interface IJoinContext {
+ public Object [] getParameters();
+ public CallbackHandler getCallbackHandler();
+}

Back to the top