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