KDECore
FakeBackend.cpp
Go to the documentation of this file.
00001 /* 00002 * Copyright (C) 2008 Nicola Gigante <nicola.gigante@gmail.com> 00003 * 00004 * This program is free software; you can redistribute it and/or modify 00005 * it under the terms of the GNU Lesser General Public License as published by 00006 * the Free Software Foundation; either version 2.1 of the License, or 00007 * (at your option) any later version. 00008 * 00009 * This program is distributed in the hope that it will be useful, 00010 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00012 * GNU General Public License for more details. 00013 * 00014 * You should have received a copy of the GNU Lesser General Public License 00015 * along with this program; if not, write to the 00016 * Free Software Foundation, Inc., 00017 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . 00018 */ 00019 00020 #include "FakeBackend.h" 00021 00022 namespace KAuth 00023 { 00024 00025 FakeBackend::FakeBackend() 00026 : AuthBackend() 00027 { 00028 setCapabilities(NoCapability); 00029 } 00030 00031 Action::AuthStatus FakeBackend::authorizeAction(const QString &action) 00032 { 00033 Q_UNUSED(action) 00034 return Action::Denied; 00035 } 00036 00037 void FakeBackend::setupAction(const QString &action) 00038 { 00039 Q_UNUSED(action) 00040 } 00041 00042 Action::AuthStatus FakeBackend::actionStatus(const QString &action) 00043 { 00044 Q_UNUSED(action) 00045 return Action::Denied; 00046 } 00047 00048 QByteArray FakeBackend::callerID() const 00049 { 00050 return QByteArray(); 00051 } 00052 00053 bool FakeBackend::isCallerAuthorized(const QString &action, QByteArray callerID) 00054 { 00055 Q_UNUSED(action) 00056 Q_UNUSED(callerID) 00057 return false; 00058 } 00059 00060 } // namespace Auth
KDE 4.6 API Reference