Package com.sun.xml.ws.test.container
Class AbstractHttpApplication
- java.lang.Object
-
- com.sun.xml.ws.test.container.AbstractHttpApplication
-
- All Implemented Interfaces:
Application
public abstract class AbstractHttpApplication extends java.lang.Object implements Application
PartialApplicationimplementation for web containers.- Author:
- Kohsuke Kawaguchi
-
-
Field Summary
Fields Modifier and Type Field Description protected DeployedServiceserviceprotected java.net.URLwarURLURL to access this web application.
-
Constructor Summary
Constructors Modifier Constructor Description protectedAbstractHttpApplication(java.net.URL warURL, DeployedService service)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.net.URIgetEndpointAddress(TestEndpoint endpoint)Returns the actual endpoint address to which the givenTestEndpointis deployed.java.util.List<java.net.URL>getWSDL()When deployed to HTTP service, WSDL URL can be obtained by "?wsdl".-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.sun.xml.ws.test.container.Application
undeploy
-
-
-
-
Field Detail
-
warURL
protected final java.net.URL warURL
URL to access this web application.
-
service
protected final DeployedService service
-
-
Constructor Detail
-
AbstractHttpApplication
protected AbstractHttpApplication(java.net.URL warURL, DeployedService service)
-
-
Method Detail
-
getEndpointAddress
@NotNull public java.net.URI getEndpointAddress(@NotNull TestEndpoint endpoint) throws java.lang.ExceptionDescription copied from interface:ApplicationReturns the actual endpoint address to which the givenTestEndpointis deployed.- Specified by:
getEndpointAddressin interfaceApplication- Throws:
java.lang.Exception
-
getWSDL
@NotNull public java.util.List<java.net.URL> getWSDL() throws java.lang.ExceptionWhen deployed to HTTP service, WSDL URL can be obtained by "?wsdl".- Specified by:
getWSDLin interfaceApplication- Throws:
java.lang.Exception
-
-