com.arangodb.entity.GraphGetCollectionsResultEntity Maven / Gradle / Ivy
package com.arangodb.entity;
import java.util.ArrayList;
import java.util.List;
/**
* @author gschwab
*
*/
public class GraphGetCollectionsResultEntity extends BaseEntity {
List collections;
public List getCollections() {
if (collections == null) {
collections = new ArrayList();
}
return collections;
}
public void setCollections(List collections) {
this.collections = collections;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy