Project

General

Profile

1
package eu.dnetlib.data.claims.entity;
2

    
3
import java.util.Date;
4

    
5
/**
6
 * Created by kiatrop on 20/11/2015.
7
 */
8
 public class Claim {
9

    
10
    private String id;
11
    private String claimedInDashboard;
12
    private String userMail;
13
    private Date date;
14
    private String sourceType;
15
    private String targetType;
16
    private String semantics;
17
    private Date curationDate;
18
    private String curatedBy;
19
    private boolean approved;
20
    private OpenaireEntity source;
21
    private OpenaireEntity target;
22

    
23

    
24

    
25
    public OpenaireEntity getTarget() {
26
        return target;
27
    }
28

    
29
    public void setTarget(OpenaireEntity target) {
30
        this.target = target;
31
    }
32

    
33
    public OpenaireEntity getSource() {
34
        return source;
35
    }
36

    
37
    public void setSource(OpenaireEntity source) {
38
        this.source = source;
39
    }
40

    
41
    public String getId() {
42
        return id;
43
    }
44

    
45
    public void setId(String id) {
46
        this.id = id;
47
    }
48

    
49
    public String getUserMail() {
50
        return userMail;
51
    }
52

    
53
    public void setUserMail(String userMail) {
54
        this.userMail = userMail;
55
    }
56

    
57
    public Date getDate() {
58
        return date;
59
    }
60

    
61
    public void setDate(Date date) {
62
        this.date = date;
63
    }
64

    
65
    public String getSourceType() {
66
        return sourceType;
67
    }
68

    
69
    public void setSourceType(String sourceType) {
70
        this.sourceType = sourceType;
71
    }
72

    
73
    public String getTargetType() {
74
        return targetType;
75
    }
76

    
77
    public void setTargetType(String targetType) {
78
        this.targetType = targetType;
79
    }
80

    
81
    public String getSemantics() {
82
        return semantics;
83
    }
84

    
85
    public void setSemantics(String semantics) {
86
        this.semantics = semantics;
87
    }
88

    
89
    public Date getCurationDate() {
90
        return curationDate;
91
    }
92

    
93
    public void setCurationDate(Date curationDate) {
94
        this.curationDate = curationDate;
95
    }
96

    
97
    public String getCuratedBy() {
98
        return curatedBy;
99
    }
100

    
101
    public void setCuratedBy(String curatedBy) {
102
        this.curatedBy = curatedBy;
103
    }
104

    
105
    public boolean isApproved() {
106
        return approved;
107
    }
108

    
109
    public void setApproved(boolean approved) {
110
        this.approved = approved;
111
    }
112

    
113
    public String getClaimedInDashboard() {
114
        return claimedInDashboard;
115
    }
116

    
117
    public void setClaimedInDashboard(String claimedInDashboard) {
118
        this.claimedInDashboard = claimedInDashboard;
119
    }
120

    
121
    @Override
122
    public String toString() {
123
        return "Claim{" +
124
                "id='" + id + '\'' +
125
                ", claimedInDashboard='" + claimedInDashboard + '\'' +
126
                ", userMail='" + userMail + '\'' +
127
                ", date=" + date +
128
                ", sourceType='" + sourceType + '\'' +
129
                ", targetType='" + targetType + '\'' +
130
                ", semantics='" + semantics + '\'' +
131
                ", curationDate=" + curationDate +
132
                ", curatedBy='" + curatedBy + '\'' +
133
                ", approved=" + approved +
134
                ", source=" + source +
135
                ", target=" + target +
136
                '}';
137
    }
138
}
(1-1/9)