Package org.apache.ftpserver.ipfilter

Examples of org.apache.ftpserver.ipfilter.SessionFilter


   
            MdcInjectionFilter mdcFilter = new MdcInjectionFilter();
   
            acceptor.getFilterChain().addLast("mdcFilter", mdcFilter);

            SessionFilter sessionFilter = getSessionFilter();
            if (sessionFilter != null) {
                // add and IP filter to the filter chain.
                acceptor.getFilterChain().addLast("sessionFilter",
                        new MinaSessionFilter(sessionFilter));
            }
View Full Code Here

TOP

Related Classes of org.apache.ftpserver.ipfilter.SessionFilter

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.