2026-01-27 09:06:40 -05:00
|
|
|
// SPDX-FileCopyrightText: 2020 Icinga GmbH <https://icinga.com>
|
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2020-02-17 12:10:51 -05:00
|
|
|
|
|
|
|
|
#ifndef PKIVERIFYCOMMAND_H
|
|
|
|
|
#define PKIVERIFYCOMMAND_H
|
|
|
|
|
|
|
|
|
|
#include "cli/clicommand.hpp"
|
|
|
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The "pki verify" command.
|
|
|
|
|
*
|
|
|
|
|
* @ingroup cli
|
|
|
|
|
*/
|
|
|
|
|
class PKIVerifyCommand final : public CLICommand
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
DECLARE_PTR_TYPEDEFS(PKIVerifyCommand);
|
|
|
|
|
|
|
|
|
|
String GetDescription() const override;
|
|
|
|
|
String GetShortDescription() const override;
|
|
|
|
|
void InitParameters(boost::program_options::options_description& visibleDesc,
|
|
|
|
|
boost::program_options::options_description& hiddenDesc) const override;
|
|
|
|
|
std::vector<String> GetArgumentSuggestions(const String& argument, const String& word) const override;
|
|
|
|
|
int Run(const boost::program_options::variables_map& vm, const std::vector<std::string>& ap) const override;
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* PKIVERIFYCOMMAND_H */
|