Package org.apache.james.mailetcontainer.api.mock

Examples of org.apache.james.mailetcontainer.api.mock.MockMailProcessor


    AbstractStateCompositeProcessor processor = new AbstractStateCompositeProcessor() {

        @Override
        protected MailProcessor createMailProcessor(final String state, HierarchicalConfiguration config) throws
            Exception {
        return new MockMailProcessor("") {

            @Override
            public void service(Mail mail) throws MessagingException {
            // check if the right processor was selected depending on the state
            assertEquals(state, mail.getState());
View Full Code Here

TOP

Related Classes of org.apache.james.mailetcontainer.api.mock.MockMailProcessor

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.