Skip to main content
summaryrefslogtreecommitdiffstats
blob: b4a3744a5953e9de458cfb966c3b1a9d430931f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*******************************************************************************
 * 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.OseeCredential;
import org.eclipse.osee.framework.core.data.UserToken;
import org.eclipse.osee.framework.core.exception.OseeAuthenticationException;

/**
 * @author Roberto E. Escobar
 */
public interface IAuthenticationManager {

   /**
    * @return <b>true</b> if authentication success
    */
   public boolean authenticate(OseeCredential credential) throws OseeAuthenticationException;

   /**
    * Resolves user credentials into an OSEE User Info
    * 
    * @return OSEE user info
    */
   public UserToken asUserToken(OseeCredential credential) throws OseeAuthenticationException;

   /**
    * Gets an array of available authentication protocols
    * 
    * @return authentication protocols
    */
   public String[] getProtocols();

   public String getProtocol();
}

Back to the top