public abstract class AbstractProtocolService extends Object implements ProtocolService
Modifier and Type | Field and Description |
---|---|
protected Set<Transport> |
transports
The service transports.
|
Constructor and Description |
---|
AbstractProtocolService() |
Modifier and Type | Method and Description |
---|---|
void |
addTransports(Transport... transports)
Add underlying transports
|
org.apache.mina.transport.socket.DatagramAcceptor |
getDatagramAcceptor(Transport udpTransport)
If this protocol service supports UDP transport then this gets the
non-null MINA DatagramAcceptor it uses.
|
DirectoryService |
getDirectoryService()
Gets the DirectoryService assigned to this ProtocolService.
|
String |
getServiceId()
Gets the instance identifier for this ProtocolService.
|
String |
getServiceName()
Gets a descriptive name for the kind of service this represents.
|
org.apache.mina.transport.socket.SocketAcceptor |
getSocketAcceptor(Transport tcpTransport)
If this protocol service support TCP transport then this gets the
MINA SocketAcceptor it uses.
|
Transport[] |
getTransports() |
boolean |
isEnabled()
Services can be enabled or disabled.
|
boolean |
isStarted()
Gets whether or not this service has been started.
|
void |
setDirectoryService(DirectoryService directoryService)
Sets the DirectoryService assigned to this ProtocolService.
|
void |
setEnabled(boolean enabled)
Sets whether or not this ProtocolService is enabled.
|
void |
setServiceId(String serviceId)
Sets the instance identifier for this ProtocolService.
|
void |
setServiceName(String name)
Sets the descriptive name for the kind of service this represents.
|
protected void |
setStarted(boolean started) |
void |
setTransports(Transport... transports)
Set the underlying transports
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
start, stop
public DirectoryService getDirectoryService()
ProtocolService
getDirectoryService
in interface ProtocolService
public void setDirectoryService(DirectoryService directoryService)
ProtocolService
setDirectoryService
in interface ProtocolService
directoryService
- the directory service core assigned to this servicepublic boolean isStarted()
ProtocolService
isStarted
in interface ProtocolService
protected void setStarted(boolean started)
started
- The state of this serverpublic boolean isEnabled()
ProtocolService
isEnabled
in interface ProtocolService
public void setEnabled(boolean enabled)
setEnabled
in interface ProtocolService
enabled
- true to enable, false to disablepublic String getServiceId()
ProtocolService
getServiceId
in interface ProtocolService
public void setServiceId(String serviceId)
ProtocolService
setServiceId
in interface ProtocolService
serviceId
- an identifier for the service instancepublic String getServiceName()
ProtocolService
getServiceName
in interface ProtocolService
public void setServiceName(String name)
ProtocolService
setServiceName
in interface ProtocolService
name
- The server namepublic Transport[] getTransports()
public void setTransports(Transport... transports)
transport
- The transportspublic void addTransports(Transport... transports)
transport
- The transportspublic org.apache.mina.transport.socket.DatagramAcceptor getDatagramAcceptor(Transport udpTransport)
getDatagramAcceptor
in interface ProtocolService
public org.apache.mina.transport.socket.SocketAcceptor getSocketAcceptor(Transport tcpTransport)
getSocketAcceptor
in interface ProtocolService
Copyright © 2003-2013 The Apache Software Foundation. All Rights Reserved.