package jumpstart.web.services; import jumpstart.client.BusinessServicesLocator; import jumpstart.client.IBusinessServicesLocator; import org.apache.tapestry.ioc.ServiceBinder; /** * This module is automatically included as part of the Tapestry IoC Registry, it's a good place to configure and extend * Tapestry, or to place your own service definitions. See http://tapestry.apache.org/tapestry5/tapestry-ioc/module.html */ public class AppModule { public static void bind(ServiceBinder binder) { binder.bind(IBusinessServicesLocator.class, BusinessServicesLocator.class); } }