Package com.changestuffs.shared.actions

Examples of com.changestuffs.shared.actions.LogoutResult


  @Logued
  public LogoutResult execute(LogoutAction arg0, ExecutionContext arg1) throws ActionException {
    log.info("Request " + requestProvider.get());
    UserService userService = UserServiceFactory.getUserService();
    log.info("Doing logout for "+userService.getCurrentUser().getNickname());
        return new LogoutResult(userService.createLogoutURL(arg0.getUrlToRedirect()));
  }
View Full Code Here

TOP

Related Classes of com.changestuffs.shared.actions.LogoutResult

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.