blob: d03276654a394c45c1e3b68a8210464b359a796c [file] [log] [blame]
/*******************************************************************************
* 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 org.eclipse.osee.framework.core.data.UserToken;
import org.eclipse.osee.framework.core.data.OseeCredential;
import org.eclipse.osee.framework.core.exception.OseeAuthenticationException;
/**
* @author Roberto E. Escobar
*/
public interface IAuthenticationProvider {
public String getProtocol();
public boolean authenticate(OseeCredential credential) throws OseeAuthenticationException;
public UserToken asOseeUserId(OseeCredential credential) throws OseeAuthenticationException;
}