public abstract class NavigationCaseBuilder.RedirectBuilder
extends java.lang.Object
Allows populating the redirect with parameters and setting the includeViewParams option.
| Constructor and Description |
|---|
RedirectBuilder() |
| Modifier and Type | Method and Description |
|---|---|
abstract NavigationCaseBuilder.RedirectBuilder |
includeViewParams()
Indicates the current redirect should include view parameters. |
abstract NavigationCaseBuilder.RedirectBuilder |
parameter(java.lang.String name,
java.lang.String value)
Add a parameter to the redirect. |
public abstract NavigationCaseBuilder.RedirectBuilder parameter(java.lang.String name, java.lang.String value)
Add a parameter to the redirect.
name - the name of the redirect parametervalue - the value of the redirect parameter. May not be a ValueExpression.java.lang.NullPointerException - if any of the parameters are nullpublic abstract NavigationCaseBuilder.RedirectBuilder includeViewParams()
Indicates the current redirect should include view parameters.