Package org.apache.james.protocols.api.logger

Examples of org.apache.james.protocols.api.logger.ContextualLogger


    private final static Charset CHARSET = Charset.forName("US-ASCII");
    private final static String DELIMITER = "\r\n";
   
    public ProtocolSessionImpl(Logger logger, ProtocolTransport transport, ProtocolConfiguration config) {
        this.transport = transport;
        this.pLog = new ContextualLogger(this, logger);
        this.connectionState = new HashMap<String, Object>();
        this.sessionState = new HashMap<String, Object>();
        this.config = config;

    }
View Full Code Here

TOP

Related Classes of org.apache.james.protocols.api.logger.ContextualLogger

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.