![JAR search and dependency download from the Maven repository](/logo.png)
com.facebook.nailgun.CommandContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nailgun-server Show documentation
Show all versions of nailgun-server Show documentation
Nailgun is a client, protocol and server for running Java programs
from the command line without incurring the JVM startup overhead.
Programs run in the server (which is implemented in Java), and are
triggered by the client (C and Python clients available), which
handles all I/O.
This project contains the SERVER ONLY.
The newest version!
/*
* Copyright 2018-present Facebook, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License. You may obtain
* a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*/
package com.facebook.nailgun;
import java.util.List;
import java.util.Properties;
/** Provides all information required to run a nail command */
class CommandContext {
private final List commandArguments;
private final Properties environmentVariables;
private final String workingDirectory;
private String command; // alias or class name
CommandContext(
String command,
String workingDirectory,
Properties environmentVariables,
List commandArguments) {
this.command = command;
this.workingDirectory = workingDirectory;
this.environmentVariables = environmentVariables;
this.commandArguments = commandArguments;
}
/** @return arguments passed with command */
List getCommandArguments() {
return commandArguments;
}
/** @return Environment variables that nailgun client is executed with */
Properties getEnvironmentVariables() {
return environmentVariables;
}
/** @return Working directory that nailgun client is executed in */
String getWorkingDirectory() {
return workingDirectory;
}
/** @return Command name or alias to execute on Nailgun server, i.e. nail class name */
String getCommand() {
return command;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy