@Override
public void configure(Binder binder)
{
binder.bind(KafkaDecoderRegistry.class).in(Scopes.SINGLETON);
binder.install(new DummyKafkaDecoderModule());
binder.install(new CsvKafkaDecoderModule());
binder.install(new JsonKafkaDecoderModule());
binder.install(new RawKafkaDecoderModule());
}