renaming the toplevel geni/ package into sfa/
[sfa.git] / geni / methods / list.py
diff --git a/geni/methods/list.py b/geni/methods/list.py
deleted file mode 100644 (file)
index 5307b8d..0000000
+++ /dev/null
@@ -1,50 +0,0 @@
-### $Id$
-### $URL$
-
-from geni.util.faults import *
-from geni.util.method import Method
-from geni.util.parameter import Parameter, Mixed
-from geni.util.auth import Auth
-from geni.util.record import GeniRecord
-
-from geni.server.registry import Registries
-
-class list(Method):
-    """
-    List the records in an authority. 
-
-    @param cred credential string specifying the rights of the caller
-    @param hrn human readable name of authority to list
-    @return list of record dictionaries         
-    """
-
-    interfaces = ['registry']
-    
-    accepts = [
-        Parameter(str, "Credential string"),
-        Parameter(str, "Human readable name (hrn)")
-        ]
-
-    returns = [GeniRecord]
-    
-    def call(self, cred, hrn):
-        
-        self.api.auth.check(cred, 'list')
-        records = []
-        try:
-            if not self.api.auth.hierarchy.auth_exists(hrn):
-                raise MissingAuthority(hrn)
-            table = self.api.auth.get_auth_table(hrn)   
-            records = table.list()
-        except MissingAuthority:
-            # is this a foreign authority
-            registries = Registries(self.api)
-            credential = self.api.getCredential()
-            for registry in registries:
-                if hrn.startswith(registry) and registry not in [self.api.hrn]:
-                    record_list = registries[registry].list(credential, hrn)
-                    for record in record_list:
-                        records.append(record.as_dict()) 
-                    return records
-        
-        return records