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

org.vertexium.cli.commands.GetAuthsCommand Maven / Gradle / Ivy

There is a newer version: 4.10.0
Show newest version
package org.vertexium.cli.commands;

import org.codehaus.groovy.tools.shell.CommandSupport;
import org.codehaus.groovy.tools.shell.Groovysh;
import org.vertexium.cli.VertexiumScript;

import java.util.List;

public class GetAuthsCommand extends CommandSupport {
    public GetAuthsCommand(Groovysh shell) {
        super(shell, ":getauths", ":ga");
    }

    @Override
    public Object execute(List args) {
        return VertexiumScript.getAuthorizations();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy