Top Interfaces Annotations Classes
[default module]

Package jakarta.faces.component


Interface Summary

Modifier and TypeInterface and Description
public interface
ActionSource

ActionSource is an interface that may be implemented by any concrete UIComponent that wishes to be a source of ActionEvents, including the ability to invoke application actions via the default ActionListener mechanism.

public interface
ActionSource2

ActionSource2 extends ActionSource and provides a JavaBeans "action" property.

public interface
ContextCallback

A simple callback interace that enables taking action on a specific UIComponent (either facet or child) in the view while preserving any contextual state for that component instance in the view.

public interface
Doctype

Doctype is an interface that must be implemented by any UIComponent that represents a document type declaration.

public interface
EditableValueHolder

EditableValueHolder is an extension of ValueHolder that describes additional features supported by editable components, including ValueChangeEvents and Validators.

public interface
NamingContainer

NamingContainer is an interface that must be implemented by any UIComponent that wants to be a naming container.

public interface
PartialStateHolder

Components that want to leverage the partial state saving feature must implement this interface instead of implementing StateHolder, from which this interface inherits.

public interface
StateHelper

Define a Map-like contract that makes it easier for components to implement PartialStateHolder.

public interface
StateHolder

This interface is implemented by classes that need to save their state between requests.

public interface
TransientStateHelper

Define a Map-like contract that makes it easier for components to implement TransientStateHolder.

public interface
TransientStateHolder

This interface is implemented by classes that need to save state that is expected to be available only within the scope of the current request.

public interface
UniqueIdVendor

UniqueIdVendor is an interface implemented by UIComponents that also implement NamingContainer so that they can provide unique ids based on their own clientId.

public interface
ValueHolder

ValueHolder is an interface that may be implemented by any concrete UIComponent that wishes to support a local value, as well as access data in the model tier via a value expression, and support conversion between String and the model tier data's native data type.

Annotation Summary

Modifier and TypeAnnotation and Description
public @interface
FacesComponent

The presence of this annotation on a class that extends UIComponent must cause the runtime to register this class as a component suitable for inclusion in a view.

Class Summary

Modifier and TypeClass and Description
pack-priv class
AttachedObjectListHolder<T>

Utility class to enable partial state saving of Lists of attached objects such as FacesListeners or Validators.

pack-priv class
ComponentStateHelper

A base implementation for maps which implement the PartialStateHolder and TransientStateHolder interfaces.

pack-priv class
MessageFactory

supported filters: package and protection.

pack-priv class
pack-priv class
SelectItemsIterator

Package private class for iterating over the set of SelectItems for a parent UISelectMany or UISelectOne.

pack-priv class
SelectUtils

Contains common utility methods used by both UISelectOne and UISelectMany.

pack-priv class
pack-priv class
StateHolderSaver

Helper class for saving and restoring attached objects.

pack-priv class
public class
UIColumn

UIColumn is a UIComponent that represents a single column of data within a parent UIData component.

public class
UICommand

UICommand is a UIComponent that represents a user interface component which, when activated by the user, triggers an application specific "command" or "action".

public abstract class
UIComponent

UIComponent is the base class for all user interface components in Jakarta Server Faces.

public abstract class
UIComponentBase

UIComponentBase is a convenience base class that implements the default concrete behavior of all methods defined by UIComponent.

public class
UIData

UIData is a UIComponent that supports data binding to a collection of data objects represented by a DataModel instance, which is the current value of this component itself (typically established via a ValueExpression).

public class
UIForm

UIForm is a UIComponent that represents an input form to be presented to the user, and whose child components represent (among other things) the input fields to be included when the form is submitted.

public class
UIGraphic

UIGraphic is a UIComponent that displays a graphical image to the user.

public class
UIImportConstants

UIImportConstants imports a mapping of all constant field values of the given type in the current view.

public class
UIInput

UIInput is a UIComponent that represents a component that both displays output to the user (like UIOutput components do) and processes request parameters on the subsequent request that need to be decoded.

public class
UIMessage

This component is responsible for displaying messages for a specific UIComponent, identified by a clientId or component id relative to the closest ancestor NamingContainer.

public class
UIMessages

The renderer for this component is responsible for obtaining the messages from the FacesContext and displaying them to the user.

public class
UINamingContainer

UINamingContainer is a convenience base class for components that wish to implement NamingContainer functionality.

public class
UIOutcomeTarget

This component is paired with the jakarta.faces.Button or jakarta.faces.Link renderers and encapsulates properties relating to the rendering of outcomes directly to the response.

public class
UIOutput

UIOutput is a UIComponent that has a value, optionally retrieved from a model tier bean via a value expression, that is displayed to the user.

public class
UIPanel

UIPanel is a UIComponent that manages the layout of its child components.

public class
UIParameter

UIParameter is a UIComponent that represents an optionally named configuration parameter for a parent component.

public class
UISelectBoolean

UISelectBoolean is a UIComponent that represents a single boolean (true or false) value.

public class
UISelectItem

UISelectItem is a component that may be nested inside a UISelectMany or UISelectOne component, and causes the addition of a SelectItem instance to the list of available options for the parent component.

public class
UISelectItemGroup

UISelectItemGroup is a component that may be nested inside a UISelectMany or UISelectOne component, and causes the addition of one SelectItemGroup of one or more SelectItem instances to the list of available options in the parent component.

public class
UISelectItemGroups

UISelectItemGroups is a component that may be nested inside a UISelectMany or UISelectOne component, and causes the addition of one or more SelectItemGroup of one or more SelectItem instances to the list of available options in the parent component.

public class
UISelectItems

UISelectItems is a component that may be nested inside a UISelectMany or UISelectOne component, and causes the addition of one or more SelectItem instances to the list of available options in the parent component.

public class
UISelectMany

UISelectMany is a UIComponent that represents the user's choice of a zero or more items from among a discrete set of available options.

public class
UISelectOne

UISelectOne is a UIComponent that represents the user's choice of zero or one items from among a discrete set of available options.

public class
UIViewAction

UIViewAction represents a method invocation that occurs during the request processing lifecycle, usually in response to an initial request, as opposed to a postback.

public class
UIViewParameter

UIViewParameter represents a binding between a request parameter and a model property or UIViewRoot property.

public class
UIViewRoot

UIViewRoot is the UIComponent that represents the root of the UIComponent tree.

public class
UIWebsocket

The <f:websocket> tag opens an one-way (server to client) websocket based push connection in client side which can be reached from server side via PushContext interface injected in any CDI/container managed artifact via @Push annotation.

public class
UpdateModelException

This exception indicates a failure to update the model and is created to wrap any exception that occurs during UIInput#updateModel.

pack-priv class