com.evasion.sam.ejb.JaasEjb Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of evasion-sam-modul Show documentation
Show all versions of evasion-sam-modul Show documentation
API de l'application modulaire evasion-en-ligne
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.evasion.sam.ejb;
import com.evasion.sam.jaas.EvasionGroup;
import com.evasion.sam.jaas.EvasionPrincipal;
/**
*
* @author sebastien
*/
public interface JaasEjb {
public void postLogin(String username);
public EvasionGroup getAllRoles(String userName);
public EvasionPrincipal getEvasionPrincipal(String userName);
public String getPassword(String userName);
}