Package org.hpi.server.session

Examples of org.hpi.server.session.HPISessionManager.deleteSession()


   * @param operation
   * @return
   */
  private LogoffResponse doLogoff(LogoffRequest operation) {
    HPISessionManager sessionManager = HPISessionManager.getInstance();
    if (sessionManager.deleteSession(operation.getSessionId())) {
      return new LogoffResponse("The session was removed successfully.", Response.Status.SUCCESS);
    } else {
      return new LogoffResponse("No session was found to remove.", Response.Status.FAIL);
    }
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.