Uses of Class
org.cometd.bayeux.server.Authorizer.Operation
-
Packages that use Authorizer.Operation Package Description org.cometd.bayeux.server org.cometd.server.authorizer -
-
Uses of Authorizer.Operation in org.cometd.bayeux.server
Methods in org.cometd.bayeux.server that return Authorizer.Operation Modifier and Type Method Description static Authorizer.Operation
Authorizer.Operation. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Authorizer.Operation[]
Authorizer.Operation. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.cometd.bayeux.server with parameters of type Authorizer.Operation Modifier and Type Method Description Authorizer.Result
Authorizer. authorize(Authorizer.Operation operation, ChannelId channel, ServerSession session, ServerMessage message)
Blocking version ofAuthorizer.authorize(Operation, ChannelId, ServerSession, ServerMessage, Promise)
.default void
Authorizer. authorize(Authorizer.Operation operation, ChannelId channel, ServerSession session, ServerMessage message, Promise<Authorizer.Result> promise)
Callback invoked to authorize the givenoperation
on the givenchannel
. -
Uses of Authorizer.Operation in org.cometd.server.authorizer
Methods in org.cometd.server.authorizer with parameters of type Authorizer.Operation Modifier and Type Method Description Authorizer.Result
GrantAuthorizer. authorize(Authorizer.Operation operation, ChannelId channel, ServerSession session, ServerMessage message)
-