Package jakarta.faces.component.behavior
Class ClientBehaviorContext.Parameter
java.lang.Object
jakarta.faces.component.behavior.ClientBehaviorContext.Parameter
- Enclosing class:
 - ClientBehaviorContext
 
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().
- Since:
 - 2.0
 
- 
Constructor Summary
Constructors - 
Method Summary
 
- 
Constructor Details
- 
Parameter
Creates a Parameter instance.
- Parameters:
 name- the name of the parametervalue- the value of the parameter- Throws:
 NullPointerException- ifnameis null.- Since:
 - 2.0
 
 
 - 
 - 
Method Details
- 
getName
Returns the Parameter's name.
- Returns:
 - the parameter's name.
 - Since:
 - 2.0
 
 - 
getValue
Returns the Parameter's value.
- Returns:
 - the parameter's value.
 - Since:
 - 2.0
 
 
 -