Ajay Yadav
Initial deployment of da-admin-service-dev
d6afd6c
raw
history blame contribute delete
350 Bytes
package com.dalab.adminservice.client;
import com.dalab.adminservice.dto.JobStatusDTO;
import java.util.List;
/**
* Test client interface for Autolabel Job API
*/
public interface IAutolabelJobApiClient {
/**
* Get all labeling jobs status
* @return List of job status DTOs
*/
List<JobStatusDTO> getAutolabelJobs();
}