Uses of Interface
org.glassfish.embeddable.web.VirtualServer
-
Packages that use VirtualServer 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 VirtualServer in com.sun.enterprise.web
Classes in com.sun.enterprise.web that implement VirtualServer Modifier and Type Class Description classPEVirtualServerStandard implementation of a virtual server (aka virtual host) in the iPlanet Application Server.classVirtualServerStandard implementation of a virtual server (aka virtual host) in the Payara Server.classVirtualServerFacadeFacade object which masks the internalVirtualServerobject from the web application. -
Uses of VirtualServer in org.glassfish.embeddable.web
Methods in org.glassfish.embeddable.web that return VirtualServer Modifier and Type Method Description VirtualServerWebContainer. createVirtualServer(String id, File docRoot)Creates a VirtualServer with the given id and docroot, and maps it to all WebListener instances.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.VirtualServerWebContainer. getVirtualServer(String id)Finds the VirtualServer with the given id.Methods in org.glassfish.embeddable.web that return types with arguments of type VirtualServer Modifier and Type Method Description Collection<VirtualServer>WebContainer. getVirtualServers()Gets the collection of VirtualServer instances registered with this WebContainer.Methods in org.glassfish.embeddable.web with parameters of type VirtualServer Modifier and Type Method Description voidWebContainer. addVirtualServer(VirtualServer virtualServer)Adds the given VirtualServer to this WebContainer.voidWebContainer. removeVirtualServer(VirtualServer virtualServer)Stops the given virtualServer and removes it from this WebContainer. -
Uses of VirtualServer in org.glassfish.web.embed.impl
Methods in org.glassfish.web.embed.impl that return VirtualServer Modifier and Type Method Description VirtualServerWebContainerImpl. createVirtualServer(String id, File docRoot)Creates a VirtualServer with the given id and docroot, and maps it to all WebListener instances.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.VirtualServerWebContainerImpl. getVirtualServer(String id)Finds the VirtualServer with the given id.Methods in org.glassfish.web.embed.impl that return types with arguments of type VirtualServer Modifier and Type Method Description Collection<VirtualServer>WebContainerImpl. getVirtualServers()Gets the collection of VirtualServer instances registered with this WebContainer.Methods in org.glassfish.web.embed.impl with parameters of type VirtualServer Modifier and Type Method Description voidWebContainerImpl. addVirtualServer(VirtualServer virtualServer)Adds the given VirtualServer to this WebContainer.voidWebContainerImpl. removeVirtualServer(VirtualServer virtualServer)Stops the given virtualServer and removes it from this WebContainer.
-