You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Passing Parameters to a Home Page

In your WebApplication:

...

public Class<? extends WebPage> getHomePage() {
	return HomePage.class;
}

...

In your HomePage:

...

public HomePage() {
	// Check the current state of everything before passing the parameters
	if (state == WORLD) {
		throw new RestartResponseException(PageWeArePassingParamsTo.class, new PageParameters(...));
	}
}

...
  • No labels