/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package com.essar.mes.sap.log.client;

import com.essar.mes.sap.log.client.data.ServiceLogData;
import com.google.gwt.user.client.rpc.RemoteService;
import com.google.gwt.user.client.rpc.RemoteServiceRelativePath;
import java.util.List;

/**
 *
 * @author dhaval
 */
@RemoteServiceRelativePath("log.rpc")
public interface ServiceLog extends RemoteService{

    List<ServiceLogData> getLog(String serviceId);
    ServiceLogData getLogDetail(String serviceId, String recordId);
}
