Class LocalApplicationContainer
- java.lang.Object
-
- com.sun.xml.ws.test.container.AbstractApplicationContainer
-
- com.sun.xml.ws.test.container.local.LocalApplicationContainer
-
- All Implemented Interfaces:
ApplicationContainer
public class LocalApplicationContainer extends AbstractApplicationContainer
Deprecated.To be removed once in-vm transport becomes readyApplicationContainerfor the local transport.- Author:
- Kohsuke Kawaguchi
-
-
Constructor Summary
Constructors Constructor Description LocalApplicationContainer(WsTool wsimport, WsTool wsgen)Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description Applicationdeploy(DeployedService service)Deprecated.Starts a service inside a container, making it ready to process requests.StringgetTransport()Deprecated.Returns the transport that this container uses for testing.voidshutdown()Deprecated.Stops the container.voidstart()Deprecated.Starts the container.-
Methods inherited from class com.sun.xml.ws.test.container.AbstractApplicationContainer
assembleWar, copyRuntimeLibraries, createWARZip, getUnsupportedUses, updateWsgenOpts, updateWsitClient
-
-
-
-
Method Detail
-
getTransport
public String getTransport()
Deprecated.Description copied from interface:ApplicationContainerReturns the transport that this container uses for testing.- Returns:
- For example, "http", "local", "tcp", "jms", etc. It should match the scheme portion of the endpoint address URI. Never null. This value is compared in the descriptor's transport declaration to decide wheter to run a test or not.
-
start
public void start()
Deprecated.Description copied from interface:ApplicationContainerStarts the container. This is invoked at the very beginning before any service is deployed.
-
shutdown
public void shutdown()
Deprecated.Description copied from interface:ApplicationContainerStops the container. This is invoked at the end to clean up any resources.
-
deploy
@NotNull public Application deploy(DeployedService service) throws Exception
Deprecated.Description copied from interface:ApplicationContainerStarts a service inside a container, making it ready to process requests.- Throws:
Exception
-
-