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

package com.essar.mes.sap.log.server.dao;

import com.essar.mes.sap.log.client.data.ServiceFieldValidation;
import com.essar.mes.sap.log.client.data.ServiceLogData;
import com.essar.mes.sap.log.client.data.ServiceLogField;
import java.util.List;

/**
 *
 * @author dhaval
 */
public interface LogServiceDao {

    List<ServiceLogData> getLog(String serviceId);
//    List<ServiceLogField> getFields(String serviceId, String recordId);
//    List<ServiceFieldValidation> getValidations(String serviceId, String recordId);
//    List<ServiceLogField> getReturnFields(String serviceId, String recordId);
    ServiceLogData getLogDetail(String serviceId, String recordId);
}
