Subversion Repositories SmartDukaan

Rev

Rev 2359 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2359 Rev 2427
Line 1... Line 1...
1
package in.shop2020.catalog.dashboard.client;
1
package in.shop2020.catalog.dashboard.client;
2
 
2
 
3
import com.google.gwt.user.client.rpc.AsyncCallback;
3
import com.google.gwt.user.client.rpc.AsyncCallback;
4
 
4
 
-
 
5
/**
-
 
6
 * The async counterpart of <code>LoginService</code>.
-
 
7
 */
5
public interface LoginServiceAsync {
8
public interface LoginServiceAsync {
6
    void authenticateUser(String username, String password, int role, AsyncCallback<String> callback);
9
    void authenticateUser(String username, String password, int role, AsyncCallback<String> callback);
7
}
10
}