Package com.sun.xml.ws.test.model
Class TestEndpoint
- java.lang.Object
-
- com.sun.xml.ws.test.model.TestEndpoint
-
public class TestEndpoint extends Object
Endpoint exposed fromTestService.- Author:
- Kohsuke Kawaguchi
-
-
Field Summary
Fields Modifier and Type Field Description StringclassNameName of the class that implements this endpoint.booleanisProviderIf this class is WebServiceProvider and not WebService.StringnameName of the endpoint.StringportNameEncoded port name "{uri}local".StringurlPatternURL pattern like "/foo" where this service is bound.
-
Constructor Summary
Constructors Constructor Description TestEndpoint(String name, String className, String portName, boolean isProvider)
-
-
-
Field Detail
-
name
@NotNull public final String name
Name of the endpoint. The name must be:- Unique within
TestService - a valid Java identifier.
This value is used to infer the port QName, the proxy object variable name to be injected, etc.
The endpoint will be deployed to "/[name]" URL.
- Unique within
-
className
@NotNull public final String className
Name of the class that implements this endpoint.
-
portName
@Nullable public final String portName
Encoded port name "{uri}local". This value is obtained from the @WebService/Provider class, and may not be always available.
-
urlPattern
@NotNull public String urlPattern
URL pattern like "/foo" where this service is bound.
-
isProvider
public final boolean isProvider
If this class is WebServiceProvider and not WebService.
-
-