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

org.vertexium.cli.commands.NowCommand 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 NowCommand extends CommandSupport {
    public NowCommand(Groovysh shell) {
        super(shell, ":now", ":tn");
    }

    @Override
    public Object execute(List args) {
        return VertexiumScript.getTimeString(System.currentTimeMillis());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy