...
All IXyzSettings are removed WICKET-5410
Keywords: IApplicationSettings, IDebugSettings, IExceptionSettings, IFrameworkSettings, IJavaScriptLibrarySettings, IMarkupSettings, IPageSettings, IRequestCycleSettings, IRequestLoggerSettings, IResourceSettings, ISecuritySettings, IStoreSettings, IWebSocketSettings
All interfaces related to configuration settings have been removed because the user application usually call setter methods like application.getXyzSettings().setAbc(abc) and don't provide their own implementations of these interfaces.
Additionally by using interfaces it is not possible to add new settings in a minor release of Wicket because it is considered as an API break.
...