source: SRUAggregator/trunk/src/java/clarind/fcs/Endpoint.java @ 2085

Last change on this file since 2085 was 2085, checked in by zastrow, 12 years ago
File size: 813 bytes
Line 
1package clarind.fcs;
2
3import java.util.*;
4
5public class Endpoint {
6    private String url;
7    private String institution;
8    private ArrayList<String> corpora;
9
10    public Endpoint(String url, String institution) {
11        this.url = url;
12        this.institution = institution;
13        this.corpora = new ArrayList<String>();
14    }
15
16    public String getUrl() {
17        return url;
18    }
19
20    public void setUrl(String url) {
21        this.url = url;
22    }
23
24    public String getInstitution() {
25        return institution;
26    }
27
28    public void setInstitution(String institution) {
29        this.institution = institution;
30    }
31
32    public ArrayList<String> getCorpora() {
33        return corpora;
34    }
35
36    public void setCorpora(ArrayList<String> corpora) {
37        this.corpora = corpora;
38    }
39   
40   
41}
Note: See TracBrowser for help on using the repository browser.