Statistics
| Revision:

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

History | View | Annotate | Download (419 Bytes)

1 4261 ldiaz
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 7582 ldiaz
        public boolean Login();
12
        public boolean isLogged();
13
        public void setLogged(boolean logged);
14 7597 ldiaz
        public boolean isValidUser();
15 4261 ldiaz
        public boolean validationRequired();
16
        public void setPluginDirectory(String dir);
17
18
}