Package com.sun.xml.ws.test.container
Class DeployedService
- java.lang.Object
-
- com.sun.xml.ws.test.container.DeployedService
-
public final class DeployedService extends java.lang.ObjectInformation about runningTestService.- Author:
- Kohsuke Kawaguchi
-
-
Field Summary
Fields Modifier and Type Field Description ApplicationappApplicationthat represents the currently deployed service on the container.java.util.List<java.net.URL>clientClasspathsClasspaths to load client artifacts for this service.DeploymentContextparentTheDeploymentContextthat owns this service.TestServiceserviceService that was deployed.java.util.List<java.lang.Class>serviceClassThe classes that represents the generatedServiceclasses.java.io.FilewarDirDirectory to store a war file image.java.io.FileworkDirRoot of the working directory to store things related to this service.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.io.FilegetResources()
-
-
-
Field Detail
-
parent
@NotNull public final DeploymentContext parent
TheDeploymentContextthat owns this service.
-
service
@NotNull public final TestService service
Service that was deployed.
-
app
public Application app
Applicationthat represents the currently deployed service on the container.This field is set when a service is deployed.
-
workDir
@NotNull public final java.io.File workDir
Root of the working directory to store things related to this service.
-
warDir
@NotNull public final java.io.File warDir
Directory to store a war file image.
-
clientClasspaths
public final java.util.List<java.net.URL> clientClasspaths
Classpaths to load client artifacts for this service.
-
serviceClass
public final java.util.List<java.lang.Class> serviceClass
The classes that represents the generatedServiceclasses. This field is populated when the service is deployed and client artifacts are generated. In fromjava tests with multiple@WebService, you may actually get multiple service classes for one deployed service (argh!)
-
-