public static class ClientBehaviorContext.Parameter extends Object
Parameter instances represent name/value pairs that "submitting" ClientBehavior implementations should include when posting back into the Faces lifecycle. ClientBehavior implementations can determine which Parameters to include by calling ClientBehaviorContext.getParameters().
| Constructor and Description | 
|---|
| Parameter(String name,
         Object value)Creates a Parameter instance. | 
| Modifier and Type | Method and Description | 
|---|---|
| String | getName()Returns the Parameter's name. | 
| Object | getValue()Returns the Parameter's value. | 
public Parameter(String name, Object value)
Creates a Parameter instance.
name - the name of the parametervalue - the value of the parameterNullPointerException - if name
 is null.Comments to: faces-dev@eclipse.org.
 Copyright © 2019 Eclipse Foundation. All rights reserved.
 Use is subject to license terms.