DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
| Code Block |
|---|
...
public HomePage() {
// Check the current state of everything before passing the parameters
if (state == WORLD) {
throw new RestartResponseException(PageWeArePassingParamsTo.class, new PageParameters(...));
}
}
...
|
Passing Parameters (Using RequestCycle)
Adding the parameters in your WebPage:
| Code Block |
|---|
...
RequestCycle.get().getPageParameters().put("myObject", myObect);
...
|
Retrieving the parameters in your WebPage:
| Code Block |
|---|
...
MyObject myObect = (MyObect)getWebRequestCycle().getPageParameters().get("myObject");
...
|