Package net.buffalo.service

Examples of net.buffalo.service.DefaultServiceRepository


   */
  protected void initServiceRepository() {
   
    if (getServletContext().getAttribute(ServiceRepository.WEB_CONTEXT_KEY) == null) {
      LOG.info("initialize the service repository");
      ServiceRepository repository = new DefaultServiceRepository(getServletContext());
      getServletContext().setAttribute(ServiceRepository.WEB_CONTEXT_KEY, repository);
    }
  }
View Full Code Here

TOP

Related Classes of net.buffalo.service.DefaultServiceRepository

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.