Class VoidVoidDispatcherProvider
- java.lang.Object
-
- org.glassfish.jersey.server.model.internal.VoidVoidDispatcherProvider
-
- All Implemented Interfaces:
ResourceMethodDispatcher.Provider
@Singleton final class VoidVoidDispatcherProvider extends java.lang.Object implements ResourceMethodDispatcher.Provider
Specific resource method dispatcher for dispatching requests to a voidJava methodwith no input arguments using a suppliedJava method invocation handler.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private static classVoidVoidDispatcherProvider.VoidToVoidDispatcher
-
Field Summary
Fields Modifier and Type Field Description private javax.ws.rs.container.ResourceContextresourceContext
-
Constructor Summary
Constructors Constructor Description VoidVoidDispatcherProvider(javax.ws.rs.container.ResourceContext resourceContext)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ResourceMethodDispatchercreate(Invocable resourceMethod, java.lang.reflect.InvocationHandler handler, ConfiguredValidator validator)Create aresource method dispatcherfor a giveninvocable resource method.
-
-
-
Method Detail
-
create
public ResourceMethodDispatcher create(Invocable resourceMethod, java.lang.reflect.InvocationHandler handler, ConfiguredValidator validator)
Description copied from interface:ResourceMethodDispatcher.ProviderCreate aresource method dispatcherfor a giveninvocable resource method. If the provider supports the invocable resource method, it will return a new non-null dispatcher instance configured to invoke the supplied invocable resource method via the providedinvocation handlerwhenever thedispatch(...)method is called on that dispatcher instance.- Specified by:
createin interfaceResourceMethodDispatcher.Provider- Parameters:
resourceMethod- the invocable resource method.handler- invocation handler to be used for the resource method invocation.validator- configured validator to be used for validation during resource method invocation- Returns:
- the resource method dispatcher, or
nullif it could not be created for the given resource method.
-
-