Uses of Interface
org.glassfish.embeddable.web.WebListener
-
Packages that use WebListener 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 WebListener in com.sun.enterprise.web
Methods in com.sun.enterprise.web that return types with arguments of type WebListener Modifier and Type Method Description Collection<WebListener>VirtualServer. getWebListeners()Gets the collection of WebListener instances from which this VirtualServer receives requests.Collection<WebListener>VirtualServerFacade. getWebListeners()Gets the collection of WebListener instances from which this VirtualServer receives requests.Methods in com.sun.enterprise.web with parameters of type WebListener Modifier and Type Method Description voidVirtualServer. setWebListeners(WebListener... webListeners)Sets the collection of WebListener instances from which this VirtualServer receives requests.voidVirtualServerFacade. setWebListeners(WebListener... webListeners)Sets the collection of WebListener instances from which this VirtualServer receives requests.Constructors in com.sun.enterprise.web with parameters of type WebListener Constructor Description VirtualServerFacade(String id, File docRoot, WebListener... webListeners) -
Uses of WebListener in org.glassfish.embeddable.web
Classes in org.glassfish.embeddable.web that implement WebListener Modifier and Type Class Description classAjpListenerListener which listens via AJP protocol.classHttpListenerHTTP Listener listens on a TCP port for incoming HTTP connection.classHttpsListenerHTTPS Listener which listens on a protocol that is secured.classWebListenerBaseBase implementation of the WebListener interfaceMethods in org.glassfish.embeddable.web with type parameters of type WebListener Modifier and Type Method Description <T extends WebListener>
TWebContainer. createWebListener(String id, Class<T> c)Creates a WebListener from the given class type and assigns the given id to it.Methods in org.glassfish.embeddable.web that return WebListener Modifier and Type Method Description WebListenerWebContainer. getWebListener(String id)Finds the WebListener with the given id.Methods in org.glassfish.embeddable.web that return types with arguments of type WebListener Modifier and Type Method Description Collection<WebListener>VirtualServer. getWebListeners()Gets the collection of WebListener instances from which this VirtualServer receives requests.Collection<WebListener>WebContainer. getWebListeners()Gets the collection of WebListener instances registered with this WebContainer.Methods in org.glassfish.embeddable.web with parameters of type WebListener Modifier and Type Method Description voidWebContainer. addWebListener(WebListener webListener)Adds the given WebListener to this WebContainer.VirtualServerWebContainer. createVirtualServer(String id, File docRoot, WebListener... webListeners)Creates a VirtualServer with the given id and docroot, and maps it to the given WebListener instances.voidWebContainer. removeWebListener(WebListener webListener)Stops the given webListener and removes it from this WebContainer. -
Uses of WebListener in org.glassfish.web.embed.impl
Methods in org.glassfish.web.embed.impl with type parameters of type WebListener Modifier and Type Method Description <T extends WebListener>
TWebContainerImpl. createWebListener(String id, Class<T> c)Creates a WebListener from the given class type and assigns the given id to it.Methods in org.glassfish.web.embed.impl that return WebListener Modifier and Type Method Description WebListenerWebContainerImpl. getWebListener(String id)Finds the WebListener with the given id.Methods in org.glassfish.web.embed.impl that return types with arguments of type WebListener Modifier and Type Method Description Collection<WebListener>WebContainerImpl. getWebListeners()Gets the collection of WebListener instances registered with this WebContainer.Methods in org.glassfish.web.embed.impl with parameters of type WebListener Modifier and Type Method Description voidWebContainerImpl. addWebListener(WebListener webListener)Adds the given WebListener to this WebContainer.VirtualServerWebContainerImpl. createVirtualServer(String id, File docRoot, WebListener... webListeners)Creates a VirtualServer with the given id and docroot, and maps it to the given WebListener instances.voidWebContainerImpl. removeWebListener(WebListener webListener)Stops the given webListener and removes it from this WebContainer.
-