Package org.apache.axis2.transport.base
Class ProtocolEndpoint
- java.lang.Object
-
- org.apache.axis2.transport.base.ProtocolEndpoint
-
- Direct Known Subclasses:
AbstractPollTableEntry,DatagramEndpoint,JMSEndpoint,TCPEndpoint
public abstract class ProtocolEndpoint extends Object
Describes a protocol specific endpoint. This might be a TCP/UDP port, a mail account, a JMS destination, etc. Typically, a protocol specific endpoint is mapped to a service.
-
-
Constructor Summary
Constructors Constructor Description ProtocolEndpoint()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description MessageContextcreateMessageContext()protected ConfigurationContextgetConfigurationContext()Get the Axis2 configuration context.StringgetDescription()Get a short description of this endpoint suitable for inclusion in log messages.abstract EndpointReference[]getEndpointReferences(AxisService service, String ip)Get the endpoint references for this protocol endpoint.AbstractTransportListenerEx<?>getListener()AxisServicegetService()StringgetServiceName()Get the name of the service to which messages received by this endpoint are pre-dispatched.abstract booleanloadConfiguration(ParameterInclude params)Configure the endpoint based on the provided parameters.
-
-
-
Method Detail
-
getListener
public final AbstractTransportListenerEx<?> getListener()
-
getService
public final AxisService getService()
-
getServiceName
public final String getServiceName()
Get the name of the service to which messages received by this endpoint are pre-dispatched.- Returns:
- the name of the service, or
nullif message are not pre-dispatched
-
getConfigurationContext
protected final ConfigurationContext getConfigurationContext()
Get the Axis2 configuration context. This is a convenience method that can be used by subclasses to get theConfigurationContextobject from the listener.- Returns:
- the configuration context
-
loadConfiguration
public abstract boolean loadConfiguration(ParameterInclude params) throws AxisFault
Configure the endpoint based on the provided parameters. If no relevant parameters are found, the implementation should returnfalse. An exception should only be thrown if there is an error or inconsistency in the parameters.- Parameters:
params- The source of the parameters to configure the endpoint. If the parameters are defined on a service, this will be anAxisServiceinstance.- Returns:
trueif the parameters contained the required configuration information and the endpoint has been configured,falseif the no configuration for the endpoint is present in the parameters- Throws:
AxisFault- if configuration information is present, but there is an error or inconsistency in the parameters
-
getEndpointReferences
public abstract EndpointReference[] getEndpointReferences(AxisService service, String ip) throws AxisFault
Get the endpoint references for this protocol endpoint.- Parameters:
service- The service to build the EPR for. IfgetService()returns a non null value, then it has the same value as this parameter, which is never null.ip- The host name or IP address of the local host. The implementation should use this information instead ofInetAddress.getLocalHost(). The value of this parameter may benull, in which case the implementation should useUtils.getIpAddress( org.apache.axis2.engine.AxisConfiguration).- Returns:
- an array of endpoint references
- Throws:
AxisFault- See Also:
TransportListener.getEPRsForService(String, String)
-
getDescription
public String getDescription()
Get a short description of this endpoint suitable for inclusion in log messages.- Returns:
- a short description of the endpoint
-
createMessageContext
public MessageContext createMessageContext() throws AxisFault
- Throws:
AxisFault
-
-