Project

General

Profile

1 51970 miriam.bag
package eu.dnetlib.data.collector.plugins.HTTPWithFileName;
2 51956 miriam.bag
3
import eu.dnetlib.data.collector.rmi.CollectorServiceException;
4
5
/**
6
 * Created by miriam on 07/05/2018.
7
 */
8
public interface ConnectorInterface {
9
10
    public void get(final String requestUrl) throws CollectorServiceException;
11
12
    public String getResponse();
13
14
    public boolean isStatusOk();
15
16
17
    public boolean responseTypeContains(String string);
18
19
}