Project

General

Profile

1 26600 sandro.lab
package eu.dnetlib.enabling.dlm.rmi;
2
3
import javax.jws.WebService;
4
5
import eu.dnetlib.common.rmi.BaseService;
6
7
/**
8
 * Distributed lock manager. Currently is used mostly to start the underlying lock manager (e.g. zookeeper) and let
9
 * client interface directly with it.
10
 *
11
 * <p>The DLM service profile contains the entry point of the underlying locking service.</p>
12
 *
13
 * @author marko
14
 *
15
 */
16
@WebService(targetNamespace = "http://services.dnetlib.eu/")
17
public interface DlmService extends BaseService {
18
}