Subversion Repositories SmartDukaan

Rev

Rev 2427 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2427 Rev 6788
Line 4... Line 4...
4
 
4
 
5
/**
5
/**
6
 * The async counterpart of <code>LoginService</code>.
6
 * The async counterpart of <code>LoginService</code>.
7
 */
7
 */
8
public interface LoginServiceAsync {
8
public interface LoginServiceAsync {
9
    void authenticateUser(String username, String password, int role, AsyncCallback<String> callback);
9
    void authenticateUser(String username, String password, AsyncCallback<String> callback);
10
}
10
}