|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use ResourceMethod.Builder | |
|---|---|
| org.glassfish.jersey.server.model | Jersey server-side application & resource modeling classes. |
| Uses of ResourceMethod.Builder in org.glassfish.jersey.server.model |
|---|
| Methods in org.glassfish.jersey.server.model that return ResourceMethod.Builder | |
|---|---|
ResourceMethod.Builder |
Resource.Builder.addMethod()
Add a new arbitrary method model to the resource. |
ResourceMethod.Builder |
Resource.Builder.addMethod(String httpMethod)
Add a new method model to the resource for processing requests of the specified HTTP method. |
ResourceMethod.Builder |
ResourceMethod.Builder.consumes(Collection<MediaType> types)
Add consumed media types supported by the component. |
ResourceMethod.Builder |
ResourceMethod.Builder.consumes(MediaType... types)
Add consumed media types supported by the component. |
ResourceMethod.Builder |
ResourceMethod.Builder.consumes(String... types)
Add consumed media types supported by the component. |
ResourceMethod.Builder |
ResourceMethod.Builder.encodedParameters(boolean value)
If set to true, the parameter values will not be automatically
decoded. |
ResourceMethod.Builder |
ResourceMethod.Builder.handledBy(Class<?> handlerClass,
Method method)
Define a resource method handler binding. |
ResourceMethod.Builder |
ResourceMethod.Builder.handledBy(Class<? extends Inflector> inflectorClass)
Define an inflector-based resource method handler binding. |
ResourceMethod.Builder |
ResourceMethod.Builder.handledBy(Inflector<ContainerRequestContext,?> inflector)
Define an inflector-based resource method handler binding. |
ResourceMethod.Builder |
ResourceMethod.Builder.handledBy(Object handlerInstance,
Method method)
Define a resource method handler binding. |
ResourceMethod.Builder |
ResourceMethod.Builder.httpMethod(String name)
Set the associated HTTP method name. |
ResourceMethod.Builder |
ResourceMethod.Builder.nameBindings(Annotation... nameBindings)
Adds name bindings. |
ResourceMethod.Builder |
ResourceMethod.Builder.nameBindings(Class<? extends Annotation>... nameBindings)
Adds name bindings. |
ResourceMethod.Builder |
ResourceMethod.Builder.nameBindings(Collection<Class<? extends Annotation>> nameBindings)
Adds name bindings. |
ResourceMethod.Builder |
ResourceMethod.Builder.path(String path)
Set the method routing path. |
ResourceMethod.Builder |
ResourceMethod.Builder.produces(Collection<MediaType> types)
Add produced media types supported by the component. |
ResourceMethod.Builder |
ResourceMethod.Builder.produces(MediaType... types)
Add produced media types supported by the component. |
ResourceMethod.Builder |
ResourceMethod.Builder.produces(String... types)
Add produced media types supported by the component. |
ResourceMethod.Builder |
ResourceMethod.Builder.suspended(long timeout,
TimeUnit unit)
Mark the component for suspending. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||