aboutsummaryrefslogtreecommitdiffstats
path: root/vespaclient-java/src/main/java/com/yahoo/vespa/security/tool/ToolDescription.java
blob: 168d8fba3ba8a7b27e4073b861480583df3d98b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.security.tool;

import org.apache.commons.cli.Option;

import java.util.List;

/**
 * Used by Tool subclasses to describe their options and calling semantics via
 * the "--help" output from the Main program.
 *
 * @author vekterli
 */
public record ToolDescription(String helpArgSuffix,
                              String helpHeader,
                              String helpFooter,
                              List<Option> cliOptions) {

}