blob: afaa1c86b17185b8c7f84a37ea3e72233c6c5abe [file] [log] [blame]
package wicket.quickstart;
import wicket.PageParameters;
/**
* Basic bookmarkable index page.
*
* NOTE: You can get session properties from QuickStartSession via getQuickStartSession()
*/
public class Index extends QuickStartPage
{
// TODO Add any page properties or variables here
/**
* Constructor that is invoked when page is invoked without a session.
*
* @param parameters
* Page parameters
*/
public Index(final PageParameters parameters)
{
// TODO Add your page's components here
}
}