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
public class PageHelpContent {
8

    
9
    @Id
10
    @JsonProperty("_id")
11
    private String id;
12

    
13
    private String page;
14
    private String community;
15
    private String placement;
16
    private int order;
17
    private String content;
18
    private boolean isActive = true;
19
    private boolean isPriorTo = false;
20

    
21
    public PageHelpContent() {
22
    }
23

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

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

    
32
    public String getPage() {
33
        return page;
34
    }
35

    
36
    public void setPage(String page) {
37
        this.page = page;
38
    }
39

    
40
    public String getCommunity() {
41
        return community;
42
    }
43

    
44
    public void setCommunity(String community) {
45
        this.community = community;
46
    }
47

    
48
    public String getPlacement() {
49
        return placement;
50
    }
51

    
52
    public void setPlacement(String placement) {
53
        this.placement = placement;
54
    }
55

    
56
    public int getOrder() {
57
        return order;
58
    }
59

    
60
    public void setOrder(int order) {
61
        this.order = order;
62
    }
63

    
64
    public String getContent() {
65
        return content;
66
    }
67

    
68
    public void setContent(String content) {
69
        this.content = content;
70
    }
71

    
72
    public boolean getIsActive() {
73
        return isActive;
74
    }
75

    
76
    public void setIsActive(boolean isActive) {
77
        this.isActive = isActive;
78
    }
79

    
80
    public boolean getIsPriorTo() { return isPriorTo; }
81

    
82
    public void setIsPriorTo(boolean isPriorTo) { this.isPriorTo = isPriorTo; }
83
}
(7-7/12)