Ajay Yadav
Initial deployment of da-admin-service-dev
d6afd6c
raw
history blame contribute delete
360 Bytes
package com.dalab.adminservice.client;
import java.util.List;
import com.dalab.adminservice.dto.JobStatusDTO;
/**
* Test client interface for Autoarchival Task API
*/
public interface IAutoarchivalTaskApiClient {
/**
* Get all archival tasks status
* @return List of job status DTOs
*/
List<JobStatusDTO> getArchivalTasks();
}