I have the following classes :
public interface Factory<T extends MyParentClass> {
public T create(String parameter);
}
public class FactoryImpl1 implements Factory<MyChildClass1> {
public MyChildClass1 create(String parameter){
...
}
}
public class FactoryImpl2 implements Factory<MyChildClass2> {
public MyChildClass2 create(String parameter){
...
}
}
public class MyModule extends AbstractModule {
@Override
protected void configure() {
MapBinder<String, Factory<MyParentClass>> factoryMap = MapBinder.newMapBinder(binder(), new TypeLiteral<String>() {}, new TypeLiteral<Factory<MyParentClass>>(){});
factoryMap.addBinding("myKey1").to(FactoryImpl1.class);
factoryMap.addBinding("myKey2").to(FactoryImpl2.class);
}
}
The syntax in my module is not correct and I don'know how to configure this.
In fact I would like to have a factory for each possible in my factory interface
Thanks in advance for your help.