All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.arangodb.entity.GraphGetCollectionsResultEntity Maven / Gradle / Ivy

There is a newer version: 7.15.0
Show newest version
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