Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.security/src/org/eclipse/equinox/security/auth/LoginContextFactory.java')
-rw-r--r--bundles/org.eclipse.equinox.security/src/org/eclipse/equinox/security/auth/LoginContextFactory.java72
1 files changed, 0 insertions, 72 deletions
diff --git a/bundles/org.eclipse.equinox.security/src/org/eclipse/equinox/security/auth/LoginContextFactory.java b/bundles/org.eclipse.equinox.security/src/org/eclipse/equinox/security/auth/LoginContextFactory.java
deleted file mode 100644
index 8aee889aa..000000000
--- a/bundles/org.eclipse.equinox.security/src/org/eclipse/equinox/security/auth/LoginContextFactory.java
+++ /dev/null
@@ -1,72 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2005, 2011 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.equinox.security.auth;
-
-import java.net.URL;
-import javax.security.auth.callback.CallbackHandler;
-import org.eclipse.equinox.internal.security.auth.SecureContext;
-
-/**
- * The LoginContextFactory class is the entry point for the login support for the platform.
- * Use it to create login contexts.
- * <p>
- * This class is not intended to be instantiated or extended by clients.
- * </p>
- * @noinstantiate This class is not intended to be instantiated by clients.
- */
-final public class LoginContextFactory {
-
- /**
- * Creates application-specific security context. The security context then can be used
- * to perform login, logout, and obtain Subject information.
- * <p>
- * Due to the way default Java Configuration is initialized, this context should be
- * created first. If standard JAAS files are used with the standard configuration,
- * the initialization will fail unless this context created first, prior to
- * any calls to {@link #createContext(String)}.
- * </p>
- * @param configName the name of login configuration to use
- * @param configFile points to the standard JAAS configuration file
- * @return new security context
- */
- public static ILoginContext createContext(String configName, URL configFile) {
- return new SecureContext(configName, configFile, null);
- }
-
- /**
- * Creates application-specific security context. The security context then can be used
- * to perform login, logout, and obtain Subject information.
- * <p>
- * Due to the way default Java Configuration is initialized, this context should be
- * created first. If standard JAAS files are used with the standard configuration,
- * the initialization will fail unless this context created first, prior to
- * any calls to {@link #createContext(String)}.
- * </p>
- * @param configName the name of login configuration to use
- * @param configFile points to the standard JAAS configuration file
- * @param handler optional callback handler, might be <code>null</code>
- * @return new security context
- */
- public static ILoginContext createContext(String configName, URL configFile, CallbackHandler handler) {
- return new SecureContext(configName, configFile, handler);
- }
-
- /**
- * Creates application-specific security context. The security context then can be used
- * to perform login, logout, and obtain Subject information.
- * @param configName the name of login configuration to use
- * @return new security context
- */
- public static ILoginContext createContext(String configName) {
- return new SecureContext(configName);
- }
-
-}

Back to the top