Package com.camunda.fox.bean

Examples of com.camunda.fox.bean.AccountService


  @Override
  protected JndiRegistry createRegistry() throws Exception {
    JndiRegistry registry = super.createRegistry();

    EmailService emailService = mock(EmailService.class);
    AccountService accountService = mock(AccountService.class);

    registry.bind("emailService", emailService);
    registry.bind("accountService", accountService);

    return registry;
View Full Code Here

TOP

Related Classes of com.camunda.fox.bean.AccountService

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.