
com.giffing.wicket.spring.boot.starter.web.config.WicketWebInitializerConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wicket-spring-boot-starter Show documentation
Show all versions of wicket-spring-boot-starter Show documentation
Enables and configures Apache Wicket from within a Spring Boot
Application. Used **only** in combination with Spring Boot.
package com.giffing.wicket.spring.boot.starter.web.config;
import javax.servlet.Filter;
import com.giffing.wicket.spring.boot.starter.web.WicketWebInitializer;
/**
* Dynamic configuration support which will be used in {@link WicketWebInitializer}.
*
* The configuration {@link WicketWebInitializerAutoConfig} is responsible to detect which {@link WicketWebInitializerConfig}
* should be configured.
*
* @author Marc Giffing
*/
public interface WicketWebInitializerConfig {
/**
* @return a filter class which will be configured in the {@link WicketWebInitializer}
*/
public Class extends Filter> filterClass();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy