Interface AzkarraRestExtensionContext
-
- All Known Implementing Classes:
UndertowEmbeddedServer.InternalRestExtensionContext
public interface AzkarraRestExtensionContext
This interfaces provides the capability forAzkarraRestExtension
implementations to register JAX-RS resources using the providedConfigurable
and to get access to theAzkarraContext
instance.- See Also:
AzkarraRestExtension
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.ws.rs.core.Configurable<? extends javax.ws.rs.core.Configurable>
configurable()
Provides an implementation ofConfigurable
that must be used to register JAX-RS resources.AzkarraContext
context()
Provides theAzkarraContext
instance that can be used to retrieve registered components.
-
-
-
Method Detail
-
configurable
javax.ws.rs.core.Configurable<? extends javax.ws.rs.core.Configurable> configurable()
Provides an implementation ofConfigurable
that must be used to register JAX-RS resources.- Returns:
- the JAX-RS
Configurable
.
-
context
AzkarraContext context()
Provides theAzkarraContext
instance that can be used to retrieve registered components.- Returns:
- the
AzkarraContext
instance.
-
-