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