Statistics
| Revision:

root / trunk / frameworks / _fwAndami / src / com / iver / andami / authentication / IAuthentication.java @ 7597

History | View | Annotate | Download (419 Bytes)

1
package com.iver.andami.authentication;
2

    
3
import java.util.Map;
4

    
5
/**
6
 * Interface to implement by clases which perform the authentication
7
 * @author laura
8
 */
9
public interface IAuthentication extends Map{        
10
        
11
        public boolean Login();
12
        public boolean isLogged();
13
        public void setLogged(boolean logged);
14
        public boolean isValidUser();
15
        public boolean validationRequired();        
16
        public void setPluginDirectory(String dir);
17
        
18
}