1   /*
2    * SPDX-FileCopyrightText: none
3    * SPDX-License-Identifier: CC0-1.0
4    */
5   
6   package gov.nist.secauto.oscal.tools.cli.core.commands.poam;
7   
8   import gov.nist.secauto.metaschema.core.model.IBoundObject;
9   import gov.nist.secauto.oscal.lib.model.PlanOfActionAndMilestones;
10  import gov.nist.secauto.oscal.tools.cli.core.commands.AbstractOscalConvertCommand;
11  
12  public class ConvertSubcommand
13      extends AbstractOscalConvertCommand {
14    @Override
15    public String getDescription() {
16      return "Convert the specified OSCAL Plan of Actions and Milestones to a different format";
17    }
18  
19    @Override
20    public Class<? extends IBoundObject> getOscalClass() {
21      return PlanOfActionAndMilestones.class;
22    }
23  }