Project

General

Profile

1 54525 panagiotis
package eu.dnetlib.repo.manager.service;
2 52829 myrto.kouk
3 52911 myrto.kouk
import eu.dnetlib.usagestats.sushilite.domain.ReportResponseWrapper;
4 52829 myrto.kouk
import org.json.JSONException;
5
6 54525 panagiotis
7 54690 panagiotis
public interface SushiliteService {
8 52829 myrto.kouk
9 54525 panagiotis
10 52911 myrto.kouk
    ReportResponseWrapper getReportResults(String page,
11
                                           String pageSize,
12
                                           String Report,
13 52829 myrto.kouk
                                           String Release,
14
                                           String RequestorID,
15
                                           String BeginDate,
16
                                           String EndDate,
17
                                           String RepositoryIdentifier,
18
                                           String ItemIdentifier,
19
                                           String ItemDataType,
20
                                           String Granularity,
21
                                           String Pretty) throws JSONException;
22
23
}