1 /*
2 * SPDX-FileCopyrightText: none
3 * SPDX-License-Identifier: CC0-1.0
4 */
5
6 package gov.nist.secauto.oscal.tools.cli.core.commands;
7
8 import edu.umd.cs.findbugs.annotations.NonNull;
9
10 /**
11 * A CLI command that supports resolving an OSCAL profile into a resolved
12 * catalog.
13 */
14 public class ResolveCommand
15 extends AbstractResolveCommand {
16
17 @NonNull
18 private static final String COMMAND = "resolve-profile";
19
20 @Override
21 public String getName() {
22 return COMMAND;
23 }
24 }