Methods Summary |
---|
public void | addListener(MessageListener newListener)registers a new SOAPMessageListener for this endpoint
listeners.add(newListener);
|
public com.sun.enterprise.deployment.WebServiceEndpoint | getDescriptor()Return the deployment descriptors associated with this
endpoint.
return endpointDesc;
|
public java.lang.String | getEndpointSelector()
return endpointSelector;
|
public EndpointType | getEndpointType()
return type;
|
public TransportType | getTransport()Returns the Transport type
return TransportType.HTTP;
|
public boolean | hasListeners()Returns true if this endpoint has listeners registered
return !listeners.isEmpty();
|
public void | removeListener(MessageListener listener)unregiters a SOAPMessageListener for this endpoint
listeners.remove(listener);
|
public void | setDescriptor(com.sun.enterprise.deployment.WebServiceEndpoint endpointDesc)Set the WebServiceEndpoint DOL descriptor
if (endpointDesc!=null) {
endpointDesc.addExtraAttribute(EndpointImpl.NAME, this);
}
this.endpointDesc = endpointDesc;
|