2014-10-06 14:21:18 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2016-01-12 08:29:59 +01:00
|
|
|
* Copyright (C) 2012-2016 Icinga Development Team (https://www.icinga.org/) *
|
2014-10-06 14:21:18 +02:00
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or *
|
|
|
|
* modify it under the terms of the GNU General Public License *
|
|
|
|
* as published by the Free Software Foundation; either version 2 *
|
|
|
|
* of the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program; if not, write to the Free Software Foundation *
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
2014-10-13 13:43:05 +02:00
|
|
|
#ifndef PKINEWCACOMMAND_H
|
|
|
|
#define PKINEWCACOMMAND_H
|
2014-10-06 14:21:18 +02:00
|
|
|
|
2014-10-20 13:58:21 +02:00
|
|
|
#include "cli/clicommand.hpp"
|
2014-10-06 14:21:18 +02:00
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
2014-10-13 13:43:05 +02:00
|
|
|
* The "pki new-ca" command.
|
2014-10-06 14:21:18 +02:00
|
|
|
*
|
|
|
|
* @ingroup cli
|
|
|
|
*/
|
2014-10-13 13:43:05 +02:00
|
|
|
class PKINewCACommand : public CLICommand
|
2014-10-06 14:21:18 +02:00
|
|
|
{
|
|
|
|
public:
|
2014-11-07 12:32:25 +01:00
|
|
|
DECLARE_PTR_TYPEDEFS(PKINewCACommand);
|
2014-10-13 18:07:52 +02:00
|
|
|
|
2015-08-18 09:12:49 +02:00
|
|
|
virtual String GetDescription(void) const override;
|
|
|
|
virtual String GetShortDescription(void) const override;
|
|
|
|
virtual int Run(const boost::program_options::variables_map& vm, const std::vector<std::string>& ap) const override;
|
2014-10-06 14:21:18 +02:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-10-13 13:43:05 +02:00
|
|
|
#endif /* PKINEWCACOMMAND_H */
|