Guice 바인딩이 구현을 등록하는 데 사용됩니다.
public class SampleModule extends AbstractModule {
public void configure() {
// Populator 구현 등록
Multibinder<PDCPhoneNumberEvidencePopulator> samplePopulator =
Multibinder.newSetBinder(binder(), PDCPhoneNumberEvidencePopulator.class);
samplePopulator.addBinding().to(SamplePopulatorImpl.class);
}
}