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

me.tfeng.play.security.SecurityContextStore Maven / Gradle / Ivy

package me.tfeng.play.security;

import org.springframework.security.core.context.SecurityContext;

public interface SecurityContextStore {

  public SecurityContext load(String id) throws Throwable;

  public void remove(String id) throws Throwable;

  public void save(String id, SecurityContext securityContext, int expirationInSeconds)
      throws Throwable;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy