1 package org.argeo.connect.ui;
2
3 import java.util.Map;
4
5 /** Provide assembly of the various {@code AppWorkbenchService} of a system */
6 public interface SystemWorkbenchService extends AppWorkbenchService {
7 public void callCommand(String commandId, Map<String, String> parameters);
8
9 public default String getDeleteEntityCmdId() {
10 throw new UnsupportedOperationException();
11 }
12 }