Package org.glassfish.grizzly.config
Interface ContextRootInfo.Holder
-
- Enclosing class:
- ContextRootInfo
public static interface ContextRootInfo.HolderThe interface, which is responsible for holding ContextRootInfo, which makes possible to initialize ContextRootInfo lazily.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ObjectgetContainer()Gets the application container, associated with the context.org.glassfish.grizzly.http.server.HttpHandlergetHttpHandler()Gets the GrizzlyHttpHandler, associated with the context.
-
-
-
Method Detail
-
getHttpHandler
org.glassfish.grizzly.http.server.HttpHandler getHttpHandler()
Gets the GrizzlyHttpHandler, associated with the context.- Returns:
- the Grizzly
HttpHandler, associated with the context.
-
getContainer
Object getContainer()
Gets the application container, associated with the context.- Returns:
- the application container, associated with the context.
-
-