summaryrefslogtreecommitdiffstats
path: root/src/Common/UserBackend.h
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2009-07-09 20:56:25 +0200
committerMatthias Schiffer <matthias@gamezock.de>2009-07-09 20:56:25 +0200
commit912886f565f13bfb678232b3098543a6b9d3af1f (patch)
treed2bbc716b87ccb2492cc9e8703e00025cf27ff33 /src/Common/UserBackend.h
parent16904a791b67b8486afabf467719d6900a1b77d2 (diff)
downloadmad-912886f565f13bfb678232b3098543a6b9d3af1f.tar
mad-912886f565f13bfb678232b3098543a6b9d3af1f.zip
UserManager, UserBackend, UserCache: updateUser, addGroup und updateGroup hinzugefügt
Diffstat (limited to 'src/Common/UserBackend.h')
-rw-r--r--src/Common/UserBackend.h12
1 files changed, 12 insertions, 0 deletions
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() {}