Interface Endpoint
-
- All Known Implementing Classes:
EndpointImpl,JAXWSEndpointImpl
public interface EndpointThis interface defines all information and behaviour accessible from a particular endpoint.- Author:
- Jerome Dochez
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddListener(MessageListener newListener)registers a new SOAPMessageListener for this endpointWebServiceEndpointgetDescriptor()Returns the Deployment Descriptors associated with this endpointStringgetEndpointSelector()EndpointTypegetEndpointType()TransportTypegetTransport()Returns the transportvoidremoveListener(MessageListener listener)unregiters a SOAPMessageListener for this endpoint
-
-
-
Method Detail
-
getEndpointSelector
String getEndpointSelector()
- Returns:
- the endpoint selector as a string. For Http transport endpoing, this is the URL web service clients use to invoke the endpoint.
-
getEndpointType
EndpointType getEndpointType()
- Returns:
- the endpoint type
-
getTransport
TransportType getTransport()
Returns the transport
-
getDescriptor
WebServiceEndpoint getDescriptor()
Returns the Deployment Descriptors associated with this endpoint
-
addListener
void addListener(MessageListener newListener)
registers a new SOAPMessageListener for this endpoint- Parameters:
newListener- the listener instance to register.
-
removeListener
void removeListener(MessageListener listener)
unregiters a SOAPMessageListener for this endpoint- Parameters:
listener- the listener instance to unregister.
-
-