blob: ed5ca7c98a8e12a8380edcca6db5d24bec99658d [file] [log] [blame]
package org.apache.karaf.webconsole.core.internal;
import org.apache.karaf.webconsole.core.dashboard.DashboardPage;
import org.apache.wicket.protocol.http.WebApplication;
/**
* Application object for your web application. If you want to run this application without deploying, run the Start
* class.
*
* @see org.code-house.Start#main(String[])
*/
public class WebConsoleApplication extends WebApplication {
public WebConsoleApplication() {
super();
}
/**
* @see org.apache.wicket.Application#getHomePage()
*/
@Override
public Class<DashboardPage> getHomePage()
{
return DashboardPage.class;
}
}