All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jwebmp.plugins.datatable.DataTablesSiteBinder Maven / Gradle / Ivy

There is a newer version: 1.2.2.1-jre17
Show newest version
package com.jwebmp.plugins.datatable;

import com.google.inject.Key;
import com.guicedee.guicedservlets.services.GuiceSiteInjectorModule;
import com.guicedee.guicedservlets.services.IGuiceSiteBinder;
import com.guicedee.logger.LogFactory;

import java.util.logging.Logger;

public class DataTablesSiteBinder
		implements IGuiceSiteBinder
{
	private static final Logger log = LogFactory.getLog("DataTablesSiteBinder");

	@Override
	public void onBind(GuiceSiteInjectorModule module)
	{
		DataTablesSiteBinder.log.info("Serving Data Tables Data at /jwdatatables");
		module.serve$("/jwdatatables")
		      .with(Key.get(DataTablesServlet.class));
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy