dashboard
repositories
filestore
activity
search
login
githubFork
/
gitblit
Gitblit devel
summary
reflog
commits
tree
docs
forks
compare
pages
blame
|
history
|
raw
Authenticate the webapp against the same realm as the git servlet.
James Moger
2011-04-14
fc948cacef9c9b8c0a1e84cbc082ca67cd5f68d9
[githubFork/gitblit.git]
/
src
/
com
/
gitblit
/
ILoginService.java
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);
}