33343536373839
private Context _context; protected ConnectionHandlerFactory createFactory() { return new DefaultHandlerFactory( SingleThreadedConnectionHandler.class ); }
26272829303132
public class SMTPServer extends AbstractService { protected ConnectionHandlerFactory createFactory() { return new DefaultHandlerFactory( SMTPHandler.class ); }
22232425262728
* @author Harmeet Bedi <harmeet@kodemuse.com> */ public class NNTPServer extends AbstractService { protected ConnectionHandlerFactory createFactory() { return new DefaultHandlerFactory( NNTPHandler.class ); }
31323334353637
29303132333435
public class RemoteManager extends AbstractService { protected ConnectionHandlerFactory createFactory() { return new DefaultHandlerFactory( RemoteManagerHandler.class ); }
23242526272829
public class POP3Server extends AbstractService { protected ConnectionHandlerFactory createFactory() { return new DefaultHandlerFactory( POP3Handler.class ); }
84858687888990
40414243444546
28293031323334