use of org.knime.core.webui.data.ApplyDataService in project knime-core by knime.
the class DataServiceManager method getApplyDataService.
private Optional<ApplyDataService> getApplyDataService(final NodeContainer nc) {
ApplyDataService ds;
if (!m_applyDataServices.containsKey(nc)) {
ds = getDataServiceProvider(nc).createApplyDataService().orElse(null);
m_applyDataServices.put(nc, ds);
} else {
ds = m_applyDataServices.get(nc);
}
return Optional.ofNullable(ds);
}
Aggregations