Init non working version
This commit is contained in:
13
TestGWT/src/com/test/gwt/client/LoginServiceAsync.java
Normal file
13
TestGWT/src/com/test/gwt/client/LoginServiceAsync.java
Normal file
@@ -0,0 +1,13 @@
|
||||
package com.test.gwt.client;
|
||||
|
||||
import com.google.gwt.user.client.rpc.AsyncCallback;
|
||||
import com.test.gwt.shared.UserDTO;
|
||||
|
||||
public interface LoginServiceAsync
|
||||
{
|
||||
void loginServer(String name, String password, AsyncCallback<UserDTO> callback);
|
||||
|
||||
void loginFromSessionServer(AsyncCallback<UserDTO> callback);
|
||||
|
||||
void logout(AsyncCallback<Void> callback);
|
||||
}
|
||||
Reference in New Issue
Block a user