Package org.glassfish.jersey.server
Class ExternalRequestScopeConfigurator
- java.lang.Object
-
- org.glassfish.jersey.server.ExternalRequestScopeConfigurator
-
- All Implemented Interfaces:
BootstrapConfigurator
class ExternalRequestScopeConfigurator extends java.lang.Object implements BootstrapConfigurator
Configurator which initializes and registerExternalRequestScope
instance intoInjectionManager
.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private static class
ExternalRequestScopeConfigurator.NoopExternalRequestScopeBinder
-
Field Summary
Fields Modifier and Type Field Description private static java.util.logging.Logger
LOGGER
private static ExternalRequestScope<java.lang.Object>
NOOP_EXTERNAL_REQ_SCOPE
-
Constructor Summary
Constructors Constructor Description ExternalRequestScopeConfigurator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
init(InjectionManager injectionManager, BootstrapBag bootstrapBag)
Pre-initialization method should only register services intoInjectionManager
and populateBootstrapBag
.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.glassfish.jersey.internal.BootstrapConfigurator
postInit
-
-
-
-
Field Detail
-
LOGGER
private static final java.util.logging.Logger LOGGER
-
NOOP_EXTERNAL_REQ_SCOPE
private static final ExternalRequestScope<java.lang.Object> NOOP_EXTERNAL_REQ_SCOPE
-
-
Method Detail
-
init
public void init(InjectionManager injectionManager, BootstrapBag bootstrapBag)
Description copied from interface:BootstrapConfigurator
Pre-initialization method should only register services intoInjectionManager
and populateBootstrapBag
.- Specified by:
init
in interfaceBootstrapConfigurator
- Parameters:
injectionManager
- not completed injection manager.bootstrapBag
- bootstrap bag with services used in following processing.
-
-