Package com.cedarsolutions.server.service.impl

Examples of com.cedarsolutions.server.service.impl.GaeVelocityTemplateService


            Resource templateDirResource = mock(Resource.class, RETURNS_DEEP_STUBS);
            when(templateDirResource.exists()).thenReturn(true);
            when(templateDirResource.getFile().getPath()).thenReturn(templateDir);

            GaeVelocityTemplateService templateService = new GaeVelocityTemplateService();
            templateService.setGaeVelocityUtils(gaeVelocityUtils);
            templateService.setTemplateDirResource(templateDirResource);
            templateService.afterPropertiesSet();

            GaeEmailService realEmailService = new GaeEmailService();
            realEmailService.setGaeEmailUtils(gaeEmailUtils);
            realEmailService.setTemplateService(templateService);
            realEmailService.afterPropertiesSet();
View Full Code Here

TOP

Related Classes of com.cedarsolutions.server.service.impl.GaeVelocityTemplateService

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.