Package jakarta.faces.component.behavior
Class ClientBehaviorContext.Parameter
- java.lang.Object
- 
- jakarta.faces.component.behavior.ClientBehaviorContext.Parameter
 
- 
- Enclosing class:
- ClientBehaviorContext
 
 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(). - Since:
- 2.0
 
- 
- 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetName()Returns the Parameter's name.ObjectgetValue()Returns the Parameter's value.
 
- 
- 
- 
Constructor Detail- 
Parameterpublic Parameter(String name, Object value) Creates a Parameter instance. - Parameters:
- name- the name of the parameter
- value- the value of the parameter
- Throws:
- NullPointerException- if- nameis null.
- Since:
- 2.0
 
 
- 
 
-