Package org.apache.james.remotemanager

Examples of org.apache.james.remotemanager.RemoteManagerSession


        this.config = config;
    }

    @Override
    protected ProtocolSession createSession(ChannelHandlerContext ctx) throws Exception {
        RemoteManagerSession rSession  = new NettyRemoteManagerSession(config, logger, ctx.getChannel());
        rSession.getState().put(RemoteManagerSession.CURRENT_USERREPOSITORY, "LocalUsers");
        return rSession;
    }
View Full Code Here

TOP

Related Classes of org.apache.james.remotemanager.RemoteManagerSession

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.