Package ratpack.session.internal

Examples of ratpack.session.internal.SessionBindingHandler


    bind(SessionManager.class).to(DefaultSessionManager.class).in(Singleton.class);
    bind(SessionCookieConfig.class).toInstance(new DefaultSessionCookieConfig(cookieExpiresMins, cookieDomain, cookiePath));
  }

  public Handler decorate(Injector injector, Handler handler) {
    return new SessionBindingHandler(handler);
  }
View Full Code Here

TOP

Related Classes of ratpack.session.internal.SessionBindingHandler

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.