package eu.dnetlib.common.interfaces.ws;

import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebResult;

public interface IDriverService {

	@WebMethod(action = "identify", operationName="identify")
	@WebResult(name="s-gensym3")
	public String identify();
	
    @WebMethod(action = "notify", operationName="notify")
    @WebResult(name="Return")
    public boolean notify(
        @WebParam(name = "subscrId")
        String subscrId,
        @WebParam(name = "topic")
        String topic,
        @WebParam(name = "isId")
        String isId,
        @WebParam(name = "message")
        String message);

}
