blob: 427481f4fce3e8eec76344b4135b391328e4ffe3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2018 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.equinox.internal.security.auth.events;
import java.util.Vector;
import javax.security.auth.Subject;
import javax.security.auth.login.LoginException;
import org.eclipse.equinox.security.auth.ILoginContextListener;
public class SecurityEventsManager {
private Vector<ILoginContextListener> listeners = new Vector<>(5);
synchronized public void addListener(ILoginContextListener listener) {
listeners.add(listener);
}
synchronized public void removeListener(ILoginContextListener listener) {
listeners.remove(listener);
}
public void notifyLoginBegin(Subject subject) {
for (ILoginContextListener listener : listeners) {
listener.onLoginStart(subject);
}
}
public void notifyLoginEnd(Subject subject, LoginException loginException) {
for (ILoginContextListener listener : listeners) {
listener.onLoginFinish(subject, loginException);
}
}
public void notifyLogoutBegin(Subject subject) {
for (ILoginContextListener listener : listeners) {
listener.onLogoutStart(subject);
}
}
public void notifyLogoutEnd(Subject subject, LoginException loginException) {
for (ILoginContextListener listener : listeners) {
listener.onLogoutFinish(subject, loginException);
}
}
}