aboutsummaryrefslogtreecommitdiffstats
path: root/node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/task/util/process/Terminal.java
blob: 30f864fc08049d92907c2037581b4b381f40f0b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

package com.yahoo.vespa.hosted.node.admin.task.util.process;

import com.yahoo.vespa.hosted.node.admin.component.TaskContext;

/**
 * A Terminal is a light-weight terminal-like interface for executing shell-like programs.
 *
 * @author hakonhall
 */
public interface Terminal {
    CommandLine newCommandLine(TaskContext taskContext);
}