Interface LoginServiceAsync
-
public interface LoginServiceAsync
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidchangePassword(long userId, String oldPassword, String newPassword, com.google.gwt.user.client.rpc.AsyncCallback<GUIValue> callback)voidgeneratePassword(String username, com.google.gwt.user.client.rpc.AsyncCallback<String> callback)voidgetUser(String username, com.google.gwt.user.client.rpc.AsyncCallback<GUIUser> callback)voidisSecretKeyRequired(String username, String deviceId, com.google.gwt.user.client.rpc.AsyncCallback<Boolean> callback)voidresetPassword(String username, String emailAddress, String productName, com.google.gwt.user.client.rpc.AsyncCallback<Void> callback)
-
-
-
Method Detail
-
changePassword
void changePassword(long userId, String oldPassword, String newPassword, com.google.gwt.user.client.rpc.AsyncCallback<GUIValue> callback)
-
getUser
void getUser(String username, com.google.gwt.user.client.rpc.AsyncCallback<GUIUser> callback)
-
resetPassword
void resetPassword(String username, String emailAddress, String productName, com.google.gwt.user.client.rpc.AsyncCallback<Void> callback)
-
isSecretKeyRequired
void isSecretKeyRequired(String username, String deviceId, com.google.gwt.user.client.rpc.AsyncCallback<Boolean> callback)
-
-