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

com.arangodb.InternalAqlFunctionsDriver Maven / Gradle / Ivy

There is a newer version: 7.15.0
Show newest version
package com.arangodb;

import com.arangodb.entity.AqlFunctionsEntity;
import com.arangodb.entity.DefaultEntity;
import com.arangodb.impl.BaseDriverInterface;

/**
 * Created by fbartels on 10/27/14.
 */
public interface InternalAqlFunctionsDriver extends BaseDriverInterface {
	DefaultEntity createAqlFunction(String database, String name, String code) throws ArangoException;

	AqlFunctionsEntity getAqlFunctions(String database, String namespace) throws ArangoException;

	DefaultEntity deleteAqlFunction(String database, String name, boolean isNameSpace) throws ArangoException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy