Package org.nextime.ion.backoffice.exception

Examples of org.nextime.ion.backoffice.exception.UserNotLoggedException


public class BaseAction extends Action {

  protected void checkUser(HttpServletRequest request)
    throws UserNotLoggedException {
    if (request.getSession().getAttribute("userLogin") == null)
      throw new UserNotLoggedException();
  }
View Full Code Here

TOP

Related Classes of org.nextime.ion.backoffice.exception.UserNotLoggedException

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.