View Javadoc
1   package net.avcompris.status.dao;
2   
3   public interface ServiceStatusHistoryDto {
4   
5   	String getServiceId();
6   
7   	String getEndpoint();
8   
9   	CheckDto[] getChecks();
10  
11  	int getStart();
12  
13  	int getTotal();
14  }