Class AbstractCommandLineArguments

java.lang.Object
net.shibboleth.ext.spring.cli.AbstractCommandLineArguments
All Implemented Interfaces:
CommandLineArguments

public abstract class AbstractCommandLineArguments extends Object implements CommandLineArguments
Command line arguments base class for the AbstractCommandLine class.
  • Field Details

    • otherArgs

      @Nonnull private List<String> otherArgs
      Command-line arguments which are not part of options.
    • verbose

      private boolean verbose
      Verbose logging has been requested.
    • quiet

      private boolean quiet
      Quiet logging has been requested.
    • logConfig

      @Nullable private String logConfig
      Name of a specific logging configuration, if one has been requested.
    • help

      private boolean help
      Help has been requested.
    • version

      private boolean version
      Version has been requested.
    • ansi

      private boolean ansi
      Use ANSI color codes.
    • propertySources

      @Nonnull @NonnullElements private List<String> propertySources
      Spring property sources.
    • languageRanges

      @Nullable private String languageRanges
      RFC4647 language ranges.
  • Constructor Details

    • AbstractCommandLineArguments

      public AbstractCommandLineArguments()
  • Method Details