Revision 15a96c3e pithos/backends/base.py

b/pithos/backends/base.py
325 325
        
326 326
        Same parameters with list_objects. Returned dicts have no user-defined
327 327
        metadata and, if until is not None, a None 'modified' timestamp.
328
        
329
        Raises:
330
            NotAllowedError: Operation not permitted
331
            
332
            NameError: Container does not exist
328 333
        """
329 334
        return []
330 335
    
336
    def list_object_permissions(self, user, account, container, prefix=''):
337
        """Return a list of paths that enforce permissions under a container.
338
        
339
        Raises:
340
            NotAllowedError: Operation not permitted
341
        """
342
        return []
343
    
344
    def list_object_public(self, user, account, container, prefix=''):
345
        """Return a dict mapping paths to public ids for objects that are public under a container."""
346
        return {}
347
    
331 348
    def get_object_meta(self, user, account, container, name, domain, version=None):
332 349
        """Return a dictionary with the object metadata for the domain.
333 350
        

Also available in: Unified diff