Class DeployedService


  • public final class DeployedService
    extends java.lang.Object
    Information about running TestService.
    Author:
    Kohsuke Kawaguchi
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.io.File getResources()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • service

        @NotNull
        public final TestService service
        Service that was deployed.
      • app

        public Application app
        Application that 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 generated Service classes. 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!)
    • Method Detail

      • getResources

        public java.io.File getResources()