package eu.dnetlib.rmi.soap;

import java.util.List;

import javax.jws.WebMethod;
import javax.jws.WebService;

import eu.dnetlib.rmi.soap.exceptions.DownloadServiceException;

@WebService(targetNamespace = "http://services.dnetlib.eu/")
public interface DownloadService extends BaseService {

	@WebMethod(operationName = "listPlugins", action = "listPlugins")
	public List<String> listPlugins() throws DownloadServiceException;
}
