[Task 70333] removed the RelationshipTypeId from Relationship endpoints

This commit is contained in:
Raf Ponsaerts
2020-04-09 16:15:12 +02:00
parent 1470406183
commit 63c14b3ccb

View File

@@ -27,7 +27,6 @@ public class RelationshipRest extends BaseObjectRest<Integer> {
@JsonIgnore
private UUID rightId;
private int relationshipTypeId;
private RelationshipTypeRest relationshipType;
private int leftPlace;
private int rightPlace;
@@ -90,14 +89,6 @@ public class RelationshipRest extends BaseObjectRest<Integer> {
this.rightPlace = rightPlace;
}
public int getRelationshipTypeId() {
return relationshipTypeId;
}
public void setRelationshipTypeId(int relationshipTypeId) {
this.relationshipTypeId = relationshipTypeId;
}
public String getRightwardValue() {
return rightwardValue;
}