icinga2/lib/livestatus/commentstable.hpp

66 lines
2.5 KiB
C++
Raw Normal View History

2013-03-10 22:20:13 +01:00
/******************************************************************************
* Icinga 2 *
* Copyright (C) 2012-2014 Icinga Development Team (http://www.icinga.org) *
2013-03-10 22:20:13 +01: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. *
******************************************************************************/
#ifndef COMMENTSTABLE_H
#define COMMENTSTABLE_H
2014-05-25 16:23:35 +02:00
#include "livestatus/table.hpp"
2013-03-17 20:19:29 +01:00
using namespace icinga;
namespace icinga
2013-03-10 22:20:13 +01:00
{
/**
* @ingroup livestatus
*/
class CommentsTable : public Table
{
public:
2014-11-03 00:44:04 +01:00
DECLARE_OBJECT(CommentsTable);
2013-03-10 22:20:13 +01:00
CommentsTable(void);
static void AddColumns(Table *table, const String& prefix = String(),
const Column::ObjectAccessor& objectAccessor = Column::ObjectAccessor());
virtual String GetName(void) const;
virtual String GetPrefix(void) const;
2013-03-10 22:20:13 +01:00
protected:
2013-03-15 18:21:29 +01:00
virtual void FetchRows(const AddRowFunction& addRowFn);
private:
static Object::Ptr ServiceAccessor(const Value& row, const Column::ObjectAccessor& parentObjectAccessor);
static Value AuthorAccessor(const Value& row);
static Value CommentAccessor(const Value& row);
static Value IdAccessor(const Value& row);
static Value EntryTimeAccessor(const Value& row);
static Value TypeAccessor(const Value& row);
static Value IsServiceAccessor(const Value& row);
static Value EntryTypeAccessor(const Value& row);
static Value ExpiresAccessor(const Value& row);
static Value ExpireTimeAccessor(const Value& row);
2013-03-10 22:20:13 +01:00
};
}
#endif /* COMMENTSTABLE_H */