From 912886f565f13bfb678232b3098543a6b9d3af1f Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Thu, 9 Jul 2009 20:56:25 +0200 Subject: =?UTF-8?q?UserManager,=20UserBackend,=20UserCache:=20updateUser,?= =?UTF-8?q?=20addGroup=20und=20updateGroup=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Common/UserBackend.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src/Common/UserBackend.h') diff --git a/src/Common/UserBackend.h b/src/Common/UserBackend.h index 4004dbc..4a84fa3 100644 --- a/src/Common/UserBackend.h +++ b/src/Common/UserBackend.h @@ -93,6 +93,18 @@ class UserBackend { throw(Core::Exception(Core::Exception::NOT_IMPLEMENTED)); } + virtual void updateUser(unsigned long uid _UNUSED_PARAMETER_, const UserInfo &userInfo _UNUSED_PARAMETER_) throw(Core::Exception) { + throw(Core::Exception(Core::Exception::NOT_IMPLEMENTED)); + } + + virtual void addGroup(const GroupInfo &groupInfo _UNUSED_PARAMETER_) throw(Core::Exception) { + throw(Core::Exception(Core::Exception::NOT_IMPLEMENTED)); + } + + virtual void updateGroup(unsigned long gid _UNUSED_PARAMETER_, const GroupInfo &groupInfo _UNUSED_PARAMETER_) throw(Core::Exception) { + throw(Core::Exception(Core::Exception::NOT_IMPLEMENTED)); + } + public: virtual ~UserBackend() {} -- cgit v1.2.3