Package com.sun.xml.ws.test.model
Class TestEndpoint
java.lang.Object
com.sun.xml.ws.test.model.TestEndpoint
Endpoint exposed from
TestService.- Author:
- Kohsuke Kawaguchi
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal StringName of the class that implements this endpoint.final booleanIf this class is WebServiceProvider and not WebService.final StringName of the endpoint.final StringEncoded port name "{uri}local".URL pattern like "/foo" where this service is bound. -
Constructor Summary
ConstructorsConstructorDescriptionTestEndpoint(String name, String className, String portName, boolean isProvider) -
Method Summary
-
Field Details
-
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
Name of the class that implements this endpoint. -
portName
Encoded port name "{uri}local". This value is obtained from the @WebService/Provider class, and may not be always available. -
urlPattern
URL pattern like "/foo" where this service is bound. -
isProvider
public final boolean isProviderIf this class is WebServiceProvider and not WebService.
-
-
Constructor Details
-
TestEndpoint
-