use of org.codelibs.fess.app.service.DuplicateHostService in project fess by codelibs.
the class DuplicateHostHelper method init.
@PostConstruct
public void init() {
if (logger.isDebugEnabled()) {
logger.debug("Initialize {}", this.getClass().getSimpleName());
}
if (duplicateHostList == null) {
duplicateHostList = new ArrayList<>();
}
final DuplicateHostService duplicateHostService = ComponentUtil.getComponent(DuplicateHostService.class);
duplicateHostList.addAll(duplicateHostService.getDuplicateHostList());
}
Aggregations