Project

General

Profile

1
package eu.dnetlib.repo.manager.domain;
2

    
3

    
4
import java.util.List;
5

    
6
/**
7
 * Created by nikonas on 7/1/16.
8
 */
9
public class InterfaceInformation{
10

    
11
    private boolean identified;
12
    private List<String> sets;
13
    private List<String> adminEmails;
14

    
15
    public InterfaceInformation() {
16
    }
17

    
18
    public boolean isIdentified() {
19
        return identified;
20
    }
21

    
22
    public void setIdentified(boolean identified) {
23
        this.identified = identified;
24
    }
25

    
26
    public List<String> getSets() {
27
        return sets;
28
    }
29

    
30
    public void setSets(List<String> sets) {
31
        this.sets = sets;
32
    }
33

    
34
    public List<String> getAdminEmails() {
35
        return adminEmails;
36
    }
37

    
38
    public void setAdminEmails(List<String> adminEmails) {
39
        this.adminEmails = adminEmails;
40
    }
41
}
(11-11/32)