package eu.dnetlib.rmi.soap;

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

import eu.dnetlib.rmi.objects.is.DnetService;

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

	/**
	 * Identifies the service's version. Version syntax: ${NAME}-${MAJOR}.${MINOR}.${MICRO}[-${LABEL}]
	 * 
	 * @return the service's version
	 */
	@WebMethod(operationName = "identify")
	public DnetService identify();

}
