James Moger
2011-04-27 166e6a131d0693d20b3cc08f252705608d24d5f0
1
2
3
4
5
6
7
8
9
10
package com.gitblit;
 
import com.gitblit.wicket.User;
 
public interface ILoginService {
 
    User authenticate(String username, char[] password);
 
    User authenticate(char[] cookie);
}