Uses of Interface
org.glassfish.embeddable.web.Context
-
Packages that use Context Package Description com.sun.enterprise.web org.glassfish.embeddable.web Provides classes and interfaces necessary to programmatically configure embedded WebContainer and create contexts, virtual servers, and web listeners.org.glassfish.web.embed.impl -
-
Uses of Context in com.sun.enterprise.web
Classes in com.sun.enterprise.web that implement Context Modifier and Type Class Description classAdHocWebModuleclassContextFacadeFacade object which masks the internalContextobject from the web application.classWebModuleClass representing a web module for use by the Application Server.Methods in com.sun.enterprise.web that return Context Modifier and Type Method Description ContextVirtualServer. getContext(String contextRoot)Finds the Context registered at the given context root.ContextVirtualServerFacade. getContext(String contextRoot)Finds the Context registered at the given context root.Methods in com.sun.enterprise.web that return types with arguments of type Context Modifier and Type Method Description Collection<Context>VirtualServer. getContexts()Gets the collection of Context instances registered with this VirtualServer.Collection<Context>VirtualServerFacade. getContexts()Gets the collection of Context instances registered with this VirtualServer.Methods in com.sun.enterprise.web with parameters of type Context Modifier and Type Method Description voidVirtualServer. addContext(Context context, String contextRoot)Registers the given Context with this VirtualServer at the given context root.voidVirtualServerFacade. addContext(Context context, String contextRoot)Registers the given Context with this VirtualServer at the given context root.voidVirtualServer. removeContext(Context context)Stops the given context and removes it from this VirtualServer.voidVirtualServerFacade. removeContext(Context context)Stops the given context and removes it from this VirtualServer. -
Uses of Context in org.glassfish.embeddable.web
Methods in org.glassfish.embeddable.web that return Context Modifier and Type Method Description ContextWebContainer. createContext(File docRoot)Creates a Context and configures it with the given docroot and classloader.ContextWebContainer. createContext(File docRoot, ClassLoader classLoader)Creates a Context and configures it with the given docroot and classloader.ContextWebContainer. createContext(File docRoot, String contextRoot, ClassLoader classLoader)Creates a Context, configures it with the given docroot and classloader, and registers it with all VirtualServer.ContextVirtualServer. getContext(String contextRoot)Finds the Context registered at the given context root.Methods in org.glassfish.embeddable.web that return types with arguments of type Context Modifier and Type Method Description Collection<Context>VirtualServer. getContexts()Gets the collection of Context instances registered with this VirtualServer.Methods in org.glassfish.embeddable.web with parameters of type Context Modifier and Type Method Description voidVirtualServer. addContext(Context context, String contextRoot)Registers the given Context with this VirtualServer at the given context root.voidWebContainer. addContext(Context context, String contextRoot)Registers the given Context with all VirtualServer at the given context root.voidVirtualServer. removeContext(Context context)Stops the given context and removes it from this VirtualServer.voidWebContainer. removeContext(Context context)Stops the given Context and removes it from all VirtualServer. -
Uses of Context in org.glassfish.web.embed.impl
Methods in org.glassfish.web.embed.impl that return Context Modifier and Type Method Description ContextWebContainerImpl. createContext(File docRoot)Creates a Context and configures it with the given docroot and classloader.ContextWebContainerImpl. createContext(File docRoot, ClassLoader classLoader)Creates a Context and configures it with the given docroot and classloader.ContextWebContainerImpl. createContext(File docRoot, String contextRoot, ClassLoader classLoader)Creates a Context, configures it with the given docroot and classloader, and registers it with all VirtualServer.Methods in org.glassfish.web.embed.impl with parameters of type Context Modifier and Type Method Description voidWebContainerImpl. addContext(Context context, String contextRoot)Registers the given Context with all VirtualServer at the given context root.voidWebContainerImpl. removeContext(Context context)Stops the given Context and removes it from all VirtualServer.
-