Class VertxRegistry
java.lang.Object
org.jboss.resteasy.plugins.server.vertx.VertxRegistry
- All Implemented Interfaces:
Registry
@Deprecated(forRemoval=true,
since="6.2.13.Final")
public class VertxRegistry
extends Object
implements Registry
Deprecated, for removal: This API element is subject to removal in a future version.
use new dependencies
- Author:
- Julien Viet
-
Constructor Summary
ConstructorsConstructorDescriptionVertxRegistry
(Registry delegate, ResourceBuilder resourceBuilder) Deprecated, for removal: This API element is subject to removal in a future version. -
Method Summary
Modifier and TypeMethodDescriptionvoid
addJndiResource
(String jndiName) Deprecated, for removal: This API element is subject to removal in a future version.Add a JAX-RS endpoint that exists in JNDI.void
addJndiResource
(String jndiName, String basePath) Deprecated, for removal: This API element is subject to removal in a future version.Add a JAX-RS endpoint that exists in JNDI.void
addJndiResource
(String jndiName, ResourceClass resourceClass) Deprecated, for removal: This API element is subject to removal in a future version.void
addJndiResource
(String jndiName, ResourceClass resourceClass, String basePath) Deprecated, for removal: This API element is subject to removal in a future version.void
addPerInstanceResource
(Class<?> clazz) Deprecated, for removal: This API element is subject to removal in a future version.void
addPerInstanceResource
(Class<?> clazz, String basePath) Deprecated, for removal: This API element is subject to removal in a future version.void
addPerInstanceResource
(ResourceClass resourceClass) Deprecated, for removal: This API element is subject to removal in a future version.void
addPerInstanceResource
(ResourceClass resourceClass, String basePath) Deprecated, for removal: This API element is subject to removal in a future version.void
addPerRequestResource
(Class<?> clazz) Deprecated, for removal: This API element is subject to removal in a future version.Add a JAX-RS endpoint.void
addPerRequestResource
(Class<?> clazz, String basePath) Deprecated, for removal: This API element is subject to removal in a future version.Add a JAX-RS endpoint.void
Deprecated, for removal: This API element is subject to removal in a future version.void
addPerRequestResource
(ResourceClass clazz, String basePath) Deprecated, for removal: This API element is subject to removal in a future version.void
Deprecated, for removal: This API element is subject to removal in a future version.Add a custom resource implementation endpoint.void
addResourceFactory
(ResourceFactory ref, String basePath) Deprecated, for removal: This API element is subject to removal in a future version.Add a custom resource implementation endpoint.void
addResourceFactory
(ResourceFactory ref, String base, Class<?> clazz) Deprecated, for removal: This API element is subject to removal in a future version.ResourceFactory.getScannableClass() is not used, only the clazz parameter and not any implemented interfaces of the clazz parameter.void
addResourceFactory
(ResourceFactory ref, String base, Class<?>[] classes) Deprecated, for removal: This API element is subject to removal in a future version.void
addResourceFactory
(ResourceFactory rf, String base, ResourceClass resourceClass) Deprecated, for removal: This API element is subject to removal in a future version.void
addSingletonResource
(Object singleton) Deprecated, for removal: This API element is subject to removal in a future version.Add a JAX-RS endpoint.void
addSingletonResource
(Object singleton, String basePath) Deprecated, for removal: This API element is subject to removal in a future version.Add a JAX-RS endpoint.void
addSingletonResource
(Object singleton, ResourceClass resourceClass) Deprecated, for removal: This API element is subject to removal in a future version.void
addSingletonResource
(Object singleton, ResourceClass resourceClass, String basePath) Deprecated, for removal: This API element is subject to removal in a future version.void
Deprecated, for removal: This API element is subject to removal in a future version.getResourceInvoker
(HttpRequest request) Deprecated, for removal: This API element is subject to removal in a future version.int
getSize()
Deprecated, for removal: This API element is subject to removal in a future version.void
removeRegistrations
(Class<?> clazz) Deprecated, for removal: This API element is subject to removal in a future version.void
removeRegistrations
(Class<?> clazz, String base) Deprecated, for removal: This API element is subject to removal in a future version.void
removeRegistrations
(ResourceClass resourceClass) Deprecated, for removal: This API element is subject to removal in a future version.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.jboss.resteasy.spi.Registry
addPerRequestResource, addResourceFactory, addResourceFactory, addResourceFactory, addResourceFactory
-
Constructor Details
-
VertxRegistry
Deprecated, for removal: This API element is subject to removal in a future version.
-
-
Method Details
-
addPerInstanceResource
Deprecated, for removal: This API element is subject to removal in a future version. -
addPerInstanceResource
Deprecated, for removal: This API element is subject to removal in a future version. -
addPerInstanceResource
Deprecated, for removal: This API element is subject to removal in a future version. -
addPerInstanceResource
Deprecated, for removal: This API element is subject to removal in a future version. -
addPerRequestResource
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:Registry
Add a JAX-RS endpoint. Objects of clazz will be created and destroy and the beginning/end of every request.- Specified by:
addPerRequestResource
in interfaceRegistry
- Parameters:
clazz
- class
-
addPerRequestResource
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:Registry
Add a JAX-RS endpoint. Objects of clazz will be created and destroy and the beginning/end of every request.- Specified by:
addPerRequestResource
in interfaceRegistry
- Parameters:
clazz
- classbasePath
- prefix path of resource
-
addSingletonResource
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:Registry
Add a JAX-RS endpoint.- Specified by:
addSingletonResource
in interfaceRegistry
- Parameters:
singleton
- resource
-
addSingletonResource
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:Registry
Add a JAX-RS endpoint.- Specified by:
addSingletonResource
in interfaceRegistry
- Parameters:
singleton
- resourcebasePath
- prefix path of resource
-
addJndiResource
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:Registry
Add a JAX-RS endpoint that exists in JNDI.- Specified by:
addJndiResource
in interfaceRegistry
- Parameters:
jndiName
- JNDI name
-
addJndiResource
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:Registry
Add a JAX-RS endpoint that exists in JNDI.- Specified by:
addJndiResource
in interfaceRegistry
- Parameters:
jndiName
- JNDI namebasePath
- prefix path of resource
-
addResourceFactory
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:Registry
Add a custom resource implementation endpoint.- Specified by:
addResourceFactory
in interfaceRegistry
- Parameters:
ref
- resource factory
-
addResourceFactory
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:Registry
Add a custom resource implementation endpoint.- Specified by:
addResourceFactory
in interfaceRegistry
- Parameters:
ref
- resource factorybasePath
- prefix path of resource
-
addResourceFactory
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:Registry
ResourceFactory.getScannableClass() is not used, only the clazz parameter and not any implemented interfaces of the clazz parameter.- Specified by:
addResourceFactory
in interfaceRegistry
- Parameters:
ref
- resource factorybase
- base URI path for any resources provided by the factory, in addition to rootPathclazz
- specific class
-
addResourceFactory
Deprecated, for removal: This API element is subject to removal in a future version.- Specified by:
addResourceFactory
in interfaceRegistry
-
removeRegistrations
Deprecated, for removal: This API element is subject to removal in a future version.- Specified by:
removeRegistrations
in interfaceRegistry
-
removeRegistrations
Deprecated, for removal: This API element is subject to removal in a future version.- Specified by:
removeRegistrations
in interfaceRegistry
-
getSize
public int getSize()Deprecated, for removal: This API element is subject to removal in a future version. -
getResourceInvoker
Deprecated, for removal: This API element is subject to removal in a future version.- Specified by:
getResourceInvoker
in interfaceRegistry
-
addResourceFactory
Deprecated, for removal: This API element is subject to removal in a future version.- Specified by:
addResourceFactory
in interfaceRegistry
-
removeRegistrations
Deprecated, for removal: This API element is subject to removal in a future version.- Specified by:
removeRegistrations
in interfaceRegistry
-
addPerRequestResource
Deprecated, for removal: This API element is subject to removal in a future version.- Specified by:
addPerRequestResource
in interfaceRegistry
-
addPerRequestResource
Deprecated, for removal: This API element is subject to removal in a future version.- Specified by:
addPerRequestResource
in interfaceRegistry
-
addSingletonResource
Deprecated, for removal: This API element is subject to removal in a future version.- Specified by:
addSingletonResource
in interfaceRegistry
-
addSingletonResource
Deprecated, for removal: This API element is subject to removal in a future version.- Specified by:
addSingletonResource
in interfaceRegistry
-
addJndiResource
Deprecated, for removal: This API element is subject to removal in a future version.- Specified by:
addJndiResource
in interfaceRegistry
-
addJndiResource
Deprecated, for removal: This API element is subject to removal in a future version.- Specified by:
addJndiResource
in interfaceRegistry
-
checkAmbiguousUri
public void checkAmbiguousUri()Deprecated, for removal: This API element is subject to removal in a future version.- Specified by:
checkAmbiguousUri
in interfaceRegistry
-