Project

General

Profile

1
package eu.dnetlib.msro.openaireplus.workflows.nodes.claims;
2

    
3
/**
4
 * Created by Alessia Bardi on 23/06/2017.
5
 *
6
 * @author Alessia Bardi
7
 */
8
public class ClaimRel {
9

    
10
	private String source, sourceType, target, targetType, semantics;
11

    
12
	public String getSource() {
13
		return source;
14
	}
15

    
16
	public ClaimRel setSource(final String source) {
17
		this.source = source;
18
		return this;
19
	}
20

    
21
	public String getSourceType() {
22
		return sourceType;
23
	}
24

    
25
	public ClaimRel setSourceType(final String sourceType) {
26
		this.sourceType = sourceType;
27
		return this;
28
	}
29

    
30
	public String getTarget() {
31
		return target;
32
	}
33

    
34
	public ClaimRel setTarget(final String target) {
35
		this.target = target;
36
		return this;
37
	}
38

    
39
	public String getTargetType() {
40
		return targetType;
41
	}
42

    
43
	public ClaimRel setTargetType(final String targetType) {
44
		this.targetType = targetType;
45
		return this;
46
	}
47

    
48
	public String getSemantics() {
49
		return semantics;
50
	}
51

    
52
	public ClaimRel setSemantics(final String semantics) {
53
		this.semantics = semantics;
54
		return this;
55
	}
56

    
57
	@Override
58
	public String toString() {
59
		return "ClaimRel{" +
60
				"source='" + source + '\'' +
61
				", sourceType='" + sourceType + '\'' +
62
				", target='" + target + '\'' +
63
				", targetType='" + targetType + '\'' +
64
				", semantics='" + semantics + '\'' +
65
				'}';
66
	}
67
}
(3-3/4)