Package | Description |
---|---|
org.glassfish.jersey.server.model |
Jersey server-side application & resource modeling classes.
|
Modifier and Type | Method and Description |
---|---|
static MethodHandler |
MethodHandler.create(Class<?> handlerClass)
Create a class-based method handler from a class.
|
static MethodHandler |
MethodHandler.create(Class<?> handlerClass,
boolean keepConstructorParamsEncoded)
Create a class-based method handler from a class.
|
static MethodHandler |
MethodHandler.create(Class<?> handlerClass,
boolean keepConstructorParamsEncoded,
Collection<Parameter> handlerParameters)
Create a class-based method handler from a class.
|
static MethodHandler |
MethodHandler.create(Class<?> handlerClass,
Collection<Parameter> handlerParameters)
Create a class-based method handler from a class.
|
static MethodHandler |
MethodHandler.create(Object handlerInstance)
Create a instance-based (singleton) method handler from a class.
|
static MethodHandler |
MethodHandler.create(Object handlerInstance,
Class<?> handlerClass)
Create a instance-based (singleton) method handler from a class.
|
static MethodHandler |
MethodHandler.create(Object handlerInstance,
Class<?> handlerClass,
Collection<Parameter> handlerParameters)
Create a instance-based (singleton) method handler from a class.
|
static MethodHandler |
MethodHandler.create(Object handlerInstance,
Collection<Parameter> handlerParameters)
Create a instance-based (singleton) method handler from a class.
|
MethodHandler |
Invocable.getHandler()
Get the model of the resource method handler that will be used to invoke
the
handling resource method on. |
Modifier and Type | Method and Description |
---|---|
static Invocable |
Invocable.create(MethodHandler handler,
Method handlingMethod)
Create a new resource method invocable model.
|
static Invocable |
Invocable.create(MethodHandler handler,
Method definitionMethod,
boolean encodedParameters)
Create a new resource method invocable model.
|
static Invocable |
Invocable.create(MethodHandler handler,
Method definitionMethod,
Method handlingMethod,
boolean encodedParameters)
Create a new resource method invocable model.
|
static Invocable |
Invocable.create(MethodHandler handler,
Method definitionMethod,
Method handlingMethod,
boolean encodedParameters,
Type routingResponseType)
Create a new resource method invocable model.
|
void |
AbstractResourceModelVisitor.visitMethodHandler(MethodHandler methodHandler) |
void |
ResourceModelVisitor.visitMethodHandler(MethodHandler methodHandler)
Visit a single resource method handler model.
|
Copyright © 2007-2024, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.