Merge from trunk
[plcapi.git] / trunk / PLC / Methods / AdmGetPersons.py
diff --git a/trunk/PLC/Methods/AdmGetPersons.py b/trunk/PLC/Methods/AdmGetPersons.py
new file mode 100644 (file)
index 0000000..35e94a0
--- /dev/null
@@ -0,0 +1,11 @@
+from PLC.Methods.GetPersons import GetPersons
+
+class AdmGetPersons(GetPersons):
+    """
+    Deprecated. See GetPersons.
+    """
+
+    status = "deprecated"
+
+    def call(self, auth, person_id_or_email_list = None, return_fields = None):
+        return GetPersons.call(self, auth, person_id_or_email_list)