Package org.apache.avalon.cornerstone.services.connection

Examples of org.apache.avalon.cornerstone.services.connection.DefaultHandlerFactory


public class IMAPServer
    extends AbstractService {

    protected ConnectionHandlerFactory createFactory()
    {
        return new DefaultHandlerFactory( SingleThreadedConnectionHandler.class );
    }
View Full Code Here


public class POP3Server
    extends AbstractService {

    protected ConnectionHandlerFactory createFactory()
    {
        return new DefaultHandlerFactory( POP3Handler.class );
    }
View Full Code Here

public class SMTPServer
    extends AbstractService {

    protected ConnectionHandlerFactory createFactory()
    {
        return new DefaultHandlerFactory( SMTPHandler.class );
    }
View Full Code Here

TOP

Related Classes of org.apache.avalon.cornerstone.services.connection.DefaultHandlerFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.