Example usage for org.apache.wicket Application setDebugSettings

List of usage examples for org.apache.wicket Application setDebugSettings

Introduction

In this page you can find the example usage for org.apache.wicket Application setDebugSettings.

Prototype

public final Application setDebugSettings(final DebugSettings debugSettings) 

Source Link

Usage

From source file:tg.adn.precord.core.web.PrecordAppInit.java

@Override
public void init(Application app) {
    // application name
    app.setName("Precord App");
    // debug settings
    app.setDebugSettings(app.getDebugSettings().setAjaxDebugModeEnabled(false)
            .setDevelopmentUtilitiesEnabled(true).setLinePreciseReportingOnAddComponentEnabled(true));
    // security settings
    app.setSecuritySettings(app.getSecuritySettings().setEnforceMounts(true));
}