package eu.dnetlib.data.dedup.rmi;

import java.util.List;

import javax.jws.WebService;

import eu.dnetlib.common.rmi.BaseService;

/**
 * The Interface HadoopService.
 */
@WebService(targetNamespace = "http://services.dnetlib.eu/")
public interface DeduplicationService extends BaseService {

	/**
	 * List available jobs.
	 *
	 * @return the list
	 * @throws HadoopServiceException
	 *             the hadoop service exception
	 */
	List<String> listAvailableJobs() throws DeduplicationServiceException;

}
