Package com.san.my.service

Examples of com.san.my.service.AccountService


public class ServiceLocator {
  static Logger logger = Logger.getLogger(ServiceLocator.class);
 
  public static AccountService getAccountService() throws Exception{
    AccountService accountService = (AccountService)BeanLocatorFactory.getBean("accountService");
    return accountService;
  }
View Full Code Here

TOP

Related Classes of com.san.my.service.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.