public interface ProtocolService
| Modifier and Type | Method and Description |
|---|---|
org.apache.mina.transport.socket.DatagramAcceptor |
getDatagramAcceptor(Transport transport)
If this protocol service supports UDP transport then this gets the
non-null MINA DatagramAcceptor it uses.
|
java.lang.String |
getServiceId()
Gets the instance identifier for this ProtocolService.
|
java.lang.String |
getServiceName()
Gets a descriptive name for the kind of service this represents.
|
org.apache.mina.transport.socket.SocketAcceptor |
getSocketAcceptor(Transport transport)
If this protocol service support TCP transport then this gets the
MINA SocketAcceptor it uses.
|
boolean |
isEnabled()
Services can be enabled or disabled.
|
boolean |
isStarted()
Gets whether or not this service has been started.
|
void |
setEnabled(boolean enabled)
Sets whether or not this ProtocolService is enabled.
|
void |
setServiceId(java.lang.String serviceId)
Sets the instance identifier for this ProtocolService.
|
void |
setServiceName(java.lang.String name)
Sets the descriptive name for the kind of service this represents.
|
void |
start()
Starts this ProtocolService which binds acceptors on the protocol port.
|
void |
stop()
Stops this ProtocolService which unbinds acceptors on the protocol port.
|
void stop() throws java.lang.Exception
java.lang.Exception - if there are problems stopping this servicevoid start()
throws java.lang.Exception
java.lang.Exception - if there are problems starting this serviceboolean isStarted()
org.apache.mina.transport.socket.DatagramAcceptor getDatagramAcceptor(Transport transport)
org.apache.mina.transport.socket.SocketAcceptor getSocketAcceptor(Transport transport)
boolean isEnabled()
void setEnabled(boolean enabled)
enabled - true to enable, false to disablejava.lang.String getServiceId()
void setServiceId(java.lang.String serviceId)
serviceId - an identifier for the service instancejava.lang.String getServiceName()
void setServiceName(java.lang.String name)
name - a descriptive name for the kind of this service