Project

General

Profile

Download (482 Bytes) Statistics
| Branch: | Tag: | Revision:
1
package eu.etaxonomy.cdm.vaadin.view;
2

    
3
import eu.etaxonomy.cdm.common.URI;
4

    
5
public interface IAuthenticationComponent {
6

    
7
	public interface AuthenticationComponentListener {
8

    
9
        /**
10
         * @param uri
11
         * @param context
12
         * @param userName
13
         * @param password
14
         * @return
15
         */
16
        boolean login(URI uri, String context, String userName, String password);
17
    }
18
    public void addListener(AuthenticationComponentListener listener);
19

    
20

    
21
}
(6-6/11)