Project

General

Profile

1
package eu.dnetlib.data.collector.plugins.httpfilename;
2

    
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
    void get(final String requestUrl) throws CollectorServiceException;
11

    
12
    String getResponse();
13

    
14
    boolean isStatusOk();
15

    
16

    
17
    boolean responseTypeContains(String string);
18

    
19
}
(2-2/5)