2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2014-10-15 16:01:15 +02:00
|
|
|
|
|
|
|
#ifndef PKISIGNCSRCOMMAND_H
|
|
|
|
#define PKISIGNCSRCOMMAND_H
|
|
|
|
|
2014-10-20 13:58:21 +02:00
|
|
|
#include "cli/clicommand.hpp"
|
2014-10-15 16:01:15 +02:00
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The "pki sign-csr" command.
|
|
|
|
*
|
|
|
|
* @ingroup cli
|
|
|
|
*/
|
2018-01-04 06:11:04 +01:00
|
|
|
class PKISignCSRCommand final : public CLICommand
|
2014-10-15 16:01:15 +02:00
|
|
|
{
|
|
|
|
public:
|
2014-11-07 12:32:25 +01:00
|
|
|
DECLARE_PTR_TYPEDEFS(PKISignCSRCommand);
|
2014-10-15 16:01:15 +02:00
|
|
|
|
2018-01-04 05:12:56 +01:00
|
|
|
String GetDescription() const override;
|
|
|
|
String GetShortDescription() const override;
|
|
|
|
void InitParameters(boost::program_options::options_description& visibleDesc,
|
2017-12-19 15:50:05 +01:00
|
|
|
boost::program_options::options_description& hiddenDesc) const override;
|
2018-01-04 05:12:56 +01:00
|
|
|
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;
|
2014-10-15 16:01:15 +02:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* PKISIGNCSRCOMMAND_H */
|