public void onFailure(Throwable reason) {
}
public void onSuccess() {
if (adminPanel == null) {
adminPanel = new AdministratorPanel(getAuthenticatedUser());
applicationContentDeck.add(adminPanel);
}
((AdministratorPanel) adminPanel).activate();
applicationContentDeck.showWidget(applicationContentDeck.getWidgetIndex(adminPanel));
}