1 package org.argeo.connect;
2
3 /** Provide assembly of the various {@code AppMaintenanceService} of a system */
4 public interface SystemMaintenanceService extends AppMaintenanceService {
5 @Override
6 default String getDefaultBasePath() {
7 throw new UnsupportedOperationException();
8 }
9 }