All Downloads are FREE. Search and download functionalities are using the official Maven repository.

play.mvc.SessionStore Maven / Gradle / Ivy

There is a newer version: 2.6.2
Show newest version
package play.mvc;

import javax.annotation.Nonnull;
import javax.annotation.Nullable;

/** Implementations of session storage mechanisms. */
public interface SessionStore {
  void save(
      @Nonnull Scope.Session session,
      @Nonnull Http.Request request,
      @Nullable Http.Response response);

  @Nonnull
  Scope.Session restore(@Nonnull Http.Request request);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy