2009-09-02 04:27:16 +02:00
|
|
|
/*
|
|
|
|
* Copyright © 2009 Rob Scheepmaker <r.scheepmaker@student.utwente.nl>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Library General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation
|
|
|
|
*
|
|
|
|
* 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 Library General Public
|
|
|
|
* License along with this program; if not, write to the
|
|
|
|
* Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
2009-09-03 01:49:46 +02:00
|
|
|
#ifndef SERVICEJOB_P_H
|
|
|
|
#define SERVICEJOB_P_H
|
|
|
|
|
2009-09-03 23:10:33 +02:00
|
|
|
#include "../remote/credentials.h"
|
2009-09-03 01:49:46 +02:00
|
|
|
#include "../servicejob.h"
|
2009-09-02 04:27:16 +02:00
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
#include <QVariant>
|
2011-05-26 19:01:44 +02:00
|
|
|
#include <QHash>
|
2009-09-02 04:27:16 +02:00
|
|
|
|
|
|
|
namespace Plasma
|
|
|
|
{
|
|
|
|
|
|
|
|
class ServiceJobPrivate
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ServiceJobPrivate(ServiceJob *owner,
|
|
|
|
const QString &dest,
|
|
|
|
const QString &op,
|
2011-05-26 19:01:44 +02:00
|
|
|
const QHash<QString, QVariant> ¶ms);
|
2009-09-02 04:27:16 +02:00
|
|
|
|
2011-04-28 22:45:19 +02:00
|
|
|
void preventAutoStart();
|
2011-04-28 18:01:16 +02:00
|
|
|
void autoStart();
|
2009-09-02 04:27:16 +02:00
|
|
|
|
|
|
|
ServiceJob *q;
|
|
|
|
QString destination;
|
|
|
|
QString operation;
|
2011-05-26 19:01:44 +02:00
|
|
|
QHash<QString, QVariant> parameters;
|
2009-09-02 04:27:16 +02:00
|
|
|
QVariant result;
|
|
|
|
Credentials identity;
|
2011-04-28 22:45:19 +02:00
|
|
|
bool m_allowAutoStart;
|
2009-09-02 04:27:16 +02:00
|
|
|
};
|
|
|
|
|
2009-09-03 01:49:46 +02:00
|
|
|
}
|
|
|
|
#endif // SERVICEJOB_P_H
|