Project

General

Profile

1
package eu.dnetlib.uoaadmintools.entities;
2

    
3
import com.fasterxml.jackson.annotation.JsonProperty;
4

    
5
import org.springframework.data.annotation.Id;
6

    
7
import java.util.List;
8

    
9
public class Page {
10

    
11
    @Id
12
    @JsonProperty("_id")
13
    private String id;
14

    
15
    private String route;
16
    private String name;
17
    private String type;
18
    private List<String> entities;
19
    private Boolean connect;
20
    private Boolean openaire;
21

    
22
    public Page() {
23
    }
24

    
25
    public String getId() {
26
        return id;
27
    }
28

    
29
    public void setId(String id) {
30
        this.id = id;
31
    }
32

    
33
    public String getRoute() {
34
        return route;
35
    }
36

    
37
    public void setRoute(String route) {
38
        this.route = route;
39
    }
40

    
41
    public String getName() {
42
        return name;
43
    }
44

    
45
    public void setName(String name) {
46
        this.name = name;
47
    }
48

    
49
    public String getType() {
50
        return type;
51
    }
52

    
53
    public void setType(String type) {
54
        this.type = type;
55
    }
56

    
57
    public List<String> getEntities() { return entities; }
58

    
59
    public void setEntities(List<String> entities) { this.entities = entities; }
60

    
61
    public Boolean getConnect() {
62
        return connect;
63
    }
64

    
65
    public void setConnect(Boolean connect) {
66
        this.connect = connect;
67
    }
68

    
69
    public Boolean getOpenaire() {
70
        return openaire;
71
    }
72

    
73
    public void setOpenaire(Boolean openaire) {
74
        this.openaire = openaire;
75
    }
76
}
(18-18/25)