Package com.porterhead.rest.gateway

Examples of com.porterhead.rest.gateway.EmailServicesGateway


        return mailSenderService;
    }

    @Bean
    public EmailServicesGateway emailServicesGateway() {
        EmailServicesGateway emailServicesGateway = mock(EmailServicesGateway.class);
        return emailServicesGateway;
    }
View Full Code Here


    @Before
    public void setUp() {
        tokens = new ArrayList<String>();

        emailServicesGateway = new EmailServicesGateway() {
            public void sendVerificationToken(EmailServiceTokenModel model) {
                tokens.add(model.getToken());

            }
        };
View Full Code Here

TOP

Related Classes of com.porterhead.rest.gateway.EmailServicesGateway

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.