Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • BeanEntryFactory (and BeanEntry)
  • EditableAccessDecisionVoterContext
  • WindowContextManager
  • InterceptorStrategy

Custom implementations can be provided via the std. @Alternative (or @Specializes) mechanism provided by CDI.

...

A BeanEntryFactory is responsible for creating instances of BeanEntry. A BeanEntry is used internally for storing conversation scoped beans.

WindowContextManager

A WindowContextManager is responsible for managing the current WindowContext. This interface is a basic (and read-only) implementation which is independent of a concrete view-technology. Modules like the JSF module can use it as base interface. The JSF module provides an EditableWindowContextManager SPI which allows to manage the WindowContext in a more specific manner which might be related to peculiarities of a concrete view-technology. If you don't need further APIs of the WindowContextManager, you don't need #getCurrentWindowContext in your application. You can directly inject the current WindowContext via @Inject.

EditableAccessDecisionVoterContext

...