com.giffing.wicket.spring.boot.context.security.AuthenticatedWebSessionConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wicket-spring-boot-context Show documentation
Show all versions of wicket-spring-boot-context Show documentation
Provides several constructs which allow developers to build
custom auto-configuration classes.
package com.giffing.wicket.spring.boot.context.security;
import org.apache.wicket.authroles.authentication.AbstractAuthenticatedWebSession;
import org.apache.wicket.authroles.authentication.AuthenticatedWebApplication;
/**
* Enables the dynamic configuration of the {@link AbstractAuthenticatedWebSession} for the
* {@link AuthenticatedWebApplication}. E.g. if spring security is present it provides a default WebSession
* configuration.
*
* Security providers should provide different implementations.
*
* @author Marc Giffing
*
*/
public interface AuthenticatedWebSessionConfig {
Class extends AbstractAuthenticatedWebSession> getAuthenticatedWebSessionClass();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy