Project

General

Profile

1 40638 nikon.gasp
package eu.dnetlib.repo.manager.shared;
2
3
import com.google.gwt.user.client.rpc.IsSerializable;
4
5
import java.util.List;
6
7
/**
8
 * Created by nikonas on 7/1/16.
9
 */
10
public class InterfaceInformation implements IsSerializable {
11
12
    private boolean identified;
13
    private List<String> sets;
14
    private List<String> adminEmails;
15
16
    public InterfaceInformation() {
17
    }
18
19
    public boolean isIdentified() {
20
        return identified;
21
    }
22
23
    public void setIdentified(boolean identified) {
24
        this.identified = identified;
25
    }
26
27
    public List<String> getSets() {
28
        return sets;
29
    }
30
31
    public void setSets(List<String> sets) {
32
        this.sets = sets;
33
    }
34
35
    public List<String> getAdminEmails() {
36
        return adminEmails;
37
    }
38
39
    public void setAdminEmails(List<String> adminEmails) {
40
        this.adminEmails = adminEmails;
41
    }
42
}