James Moger
2011-04-14 155bf78e3377910d29b2c912f58c0f496cb428e8
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);
}