Project

General

Profile

1 49368 michele.ar
2
package eu.dnetlib.data.mdstore.plugins.objects.dli;
3
4
public class DliRelationship {
5
6
	private String inverseRelationship;
7
	private String name;
8
	private String schema;
9
10
	public String getInverseRelationship() {
11
		return inverseRelationship;
12
	}
13
14
	public void setInverseRelationship(final String inverseRelationship) {
15
		this.inverseRelationship = inverseRelationship;
16
	}
17
18
	public String getName() {
19
		return name;
20
	}
21
22
	public void setName(final String name) {
23
		this.name = name;
24
	}
25
26
	public String getSchema() {
27
		return schema;
28
	}
29
30
	public void setSchema(final String schema) {
31
		this.schema = schema;
32
	}
33
34
}