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 String getId() {
19
        return id;
20
    }
21

    
22
    public void setId(String id) {
23
        this.id = id;
24
    }
25

    
26
    public String getPage() {
27
        return page;
28
    }
29

    
30
    public void setPage(String page) {
31
        this.page = page;
32
    }
33

    
34
    public String getCommunity() {
35
        return community;
36
    }
37

    
38
    public void setCommunity(String community) {
39
        this.community = community;
40
    }
41

    
42
    public String getContent() {
43
        return content;
44
    }
45

    
46
    public void setContent(String content) {
47
        this.content = content;
48
    }
49
}
(11-11/20)