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

com.arangodb.InternalAdminDriver Maven / Gradle / Ivy

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

import com.arangodb.entity.*;
import com.arangodb.impl.BaseDriverInterface;

/**
 * Created by fbartels on 10/27/14.
 */
public interface InternalAdminDriver extends BaseDriverInterface {
  AdminLogEntity getServerLog(
    Integer logLevel, Boolean logLevelUpTo,
    Integer start,
    Integer size, Integer offset,
    Boolean sortAsc,
    String text
  ) throws ArangoException;

  StatisticsEntity getStatistics() throws ArangoException;

  StatisticsDescriptionEntity getStatisticsDescription() throws ArangoException;

  ArangoVersion getVersion() throws ArangoException;

  ArangoUnixTime getTime() throws ArangoException;

  DefaultEntity reloadRouting() throws ArangoException;

  DefaultEntity executeScript(String database, String jsCode) throws ArangoException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy