Project

General

Profile

1
//package eu.dnetlib.data.claims.migration.entity;
2
//
3
///**
4
// * Created by kiatrop on 5/2/2016.
5
// */
6
//
7
//import java.util.Date;
8
//
9
///**
10
// * This is the old claim representation
11
// */
12
//public class Relation {
13
//
14
//    private String claimId = null;
15
//    private String targetId = null;
16
//    private String targetType = null;
17
//
18
//    private String sourceId = null;
19
//    private String sourceType = null;
20
//
21
//    private boolean hasDMF = false;
22
//    private String dmf = null;
23
//
24
//    private String collectedFrom = null;
25
//
26
//    private String claimedBy = null;
27
//    private Date claimDate = null;
28
//
29
//    public String getClaimId() {
30
//        return claimId;
31
//    }
32
//
33
//    public void setClaimId(String claimId) {
34
//        this.claimId = claimId;
35
//    }
36
//
37
//    public String getTargetId() {
38
//        return targetId;
39
//    }
40
//
41
//    public void setTargetId(String targetId) {
42
//        this.targetId = targetId;
43
//    }
44
//
45
//    public String getTargetType() {
46
//        return targetType;
47
//    }
48
//
49
//    public void setTargetType(String targetType) {
50
//        this.targetType = targetType;
51
//    }
52
//
53
//    public String getSourceId() {
54
//        return sourceId;
55
//    }
56
//
57
//    public void setSourceId(String sourceId) {
58
//        this.sourceId = sourceId;
59
//    }
60
//
61
//    public String getSourceType() {
62
//        return sourceType;
63
//    }
64
//
65
//    public void setSourceType(String sourceType) {
66
//        this.sourceType = sourceType;
67
//    }
68
//
69
//    public boolean isHasDMF() {
70
//        return hasDMF;
71
//    }
72
//
73
//    public void setHasDMF(boolean hasDMF) {
74
//        this.hasDMF = hasDMF;
75
//    }
76
//
77
//    public String getCollectedFrom() {
78
//        return collectedFrom;
79
//    }
80
//
81
//    public void setCollectedFrom(String collectedFrom) {
82
//        this.collectedFrom = collectedFrom;
83
//    }
84
//
85
//    public String getClaimedBy() {
86
//        return claimedBy;
87
//    }
88
//
89
//    public void setClaimedBy(String claimedBy) {
90
//        this.claimedBy = claimedBy;
91
//    }
92
//
93
//    public Date getClaimDate() {
94
//        return claimDate;
95
//    }
96
//
97
//    public void setClaimDate(Date claimDate) {
98
//        this.claimDate = claimDate;
99
//    }
100
//
101
//    public String getDmf() {
102
//        return dmf;
103
//    }
104
//
105
//    public void setDmf(String dmf) {
106
//        this.dmf = dmf;
107
//    }
108
//}
(7-7/8)