Project

General

Profile

1
package eu.dnetlib.uoaadmintools.entities;
2

    
3
import com.fasterxml.jackson.annotation.JsonProperty;
4
import org.springframework.data.annotation.Id;
5

    
6
public class HtmlPageContent {
7
    @Id
8
    @JsonProperty("_id")
9
    private String id;
10

    
11
    private String page;
12
    private String community;
13
    private String content;
14

    
15
    public HtmlPageContent() {
16
    }
17

    
18
    public HtmlPageContent(String page, String community, String content) {
19
        this.page = page;
20
        this.community = community;
21
        this.content = content;
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 getContent() {
49
        return content;
50
    }
51

    
52
    public void setContent(String content) {
53
        this.content = content;
54
    }
55
}
(12-12/23)