mirror of
https://github.com/eclipse-sailing-analytics/sailing-analytics.git
synced 2026-09-25 06:58:39 +00:00
add documentation for replicable service
This commit is contained in:
+7
-1
@@ -1,15 +1,21 @@
|
||||
package com.sap.sse.filestorage.impl;
|
||||
|
||||
import com.sap.sse.common.NoCorrespondingServiceRegisteredException;
|
||||
import com.sap.sse.filestorage.FileStorageManagementService;
|
||||
import com.sap.sse.filestorage.common.FileStorageService;
|
||||
|
||||
/**
|
||||
* Defines internal operations that do are called only by
|
||||
* Publishes those methods of {@link FileStorageManagementService} that are required by operations implemented as lambda
|
||||
* expressions to fulfill their tasks. These operations should not be invoked by external service clients.
|
||||
* {@link FileStorageManagementService} is the one registered with the OSGi registry and thus the publicly-visible
|
||||
* interface (description copied from ReplicableSecurityService).
|
||||
*
|
||||
* @author Fredrik Teschke
|
||||
*
|
||||
*/
|
||||
public interface ReplicableFileStorageManagementService {
|
||||
void internalSetFileStorageServiceProperty(String serviceName, String propertyName, String propertyValue)
|
||||
throws NoCorrespondingServiceRegisteredException, IllegalArgumentException;
|
||||
|
||||
void internalSetActiveFileStorageService(FileStorageService service);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user