com.jwebmp.plugins.datatable.DataTablesSiteBinder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jwebmp-data-tables Show documentation
Show all versions of jwebmp-data-tables Show documentation
The JWebSwing implementation for Data Tables
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