aboutsummaryrefslogtreecommitdiff
path: root/lib/classes/PrivacyObject.interface.php
diff options
context:
space:
mode:
authorJan-Hendrik Willms <tleilax+github@gmail.com>2021-07-22 16:07:19 +0200
committerJan-Hendrik Willms <tleilax+github@gmail.com>2021-07-22 16:19:12 +0200
commita3da1483a9e689846179159355badfec8073dbec (patch)
tree770dcca6bdf5f6f2a11b0e7fcbbeda6919a3fc52 /lib/classes/PrivacyObject.interface.php
current code from svn, revision 62608
Diffstat (limited to 'lib/classes/PrivacyObject.interface.php')
-rw-r--r--lib/classes/PrivacyObject.interface.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/classes/PrivacyObject.interface.php b/lib/classes/PrivacyObject.interface.php
new file mode 100644
index 0000000..8129634
--- /dev/null
+++ b/lib/classes/PrivacyObject.interface.php
@@ -0,0 +1,11 @@
+<?php
+interface PrivacyObject
+{
+ /**
+ * Export available data of a given user into a storage object
+ * (an instance of the StoredUserData class) for that user.
+ *
+ * @param StoredUserData $storage object to store data into
+ */
+ public static function exportUserData(StoredUserData $storage);
+}