com.arangodb.entity.EdgeDefinitionEntity Maven / Gradle / Ivy
package com.arangodb.entity;
import java.util.ArrayList;
import java.util.List;
public class EdgeDefinitionEntity {
String collection;
List from;
List to;
public EdgeDefinitionEntity() {
this.from = new ArrayList();
this.to = new ArrayList();
}
public String getCollection() {
return collection;
}
public EdgeDefinitionEntity setCollection(String collection) {
this.collection = collection;
return this;
}
public List getFrom() {
return from;
}
public EdgeDefinitionEntity setFrom(List from) {
this.from = from;
return this;
}
public List getTo() {
return to;
}
public EdgeDefinitionEntity setTo(List to) {
this.to = to;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy