Skip to content

Commit

Permalink
MYFACES-4684: 5.0 Quarkus register websocket scopes (#766)
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware authored Oct 15, 2024
1 parent 7435859 commit 5f31422
Showing 1 changed file with 9 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -162,21 +162,24 @@
class MyFacesProcessor
{

private static final Class[] BEAN_CLASSES =
private static final Class<?>[] BEAN_CLASSES =
{
CdiAnnotationProviderExtension.class,
ClientWindowScopeContextualStorageHolder.class,
FacesApplicationArtifactHolder.class,
FacesArtifactProducer.class,
FacesConfigBeanHolder.class,
FacesDataModelManager.class,
FlowScopeContextualStorageHolder.class,
PhaseEventBroadcasterPhaseListener.PhaseEventBroadcaster.class,
ViewScopeContextualStorageHolder.class,
ViewScopeEventListenerBridge.class,
CdiAnnotationProviderExtension.class,
WebsocketChannelTokenBuilder.class,
WebsocketSessionManager.class,
WebsocketScopeManager.ApplicationScope.class,
WebsocketScopeManager.SessionScope.class,
WebsocketScopeManager.ViewScope.class,
WebsocketScopeManager.class,
ClientWindowScopeContextualStorageHolder.class,
FlowScopeContextualStorageHolder.class,
PhaseEventBroadcasterPhaseListener.PhaseEventBroadcaster.class
WebsocketSessionManager.class,
};

private static final String[] BEAN_DEFINING_ANNOTATION_CLASSES =
Expand Down

0 comments on commit 5f31422

Please sign in to comment.