"""Expand an "owner" to a list of authorized users."""
for ep in pkg_resources.iter_entry_points('invirt.authz', cfg.authz.name):
return ep.load().expandOwner(name)
"""Expand an "owner" to a list of authorized users."""
for ep in pkg_resources.iter_entry_points('invirt.authz', cfg.authz.name):
return ep.load().expandOwner(name)
"""Expand an "administrator" to a list of authorized users."""
for ep in pkg_resources.iter_entry_points('invirt.authz', cfg.authz.name):
return ep.load().expandAdmin(name)
"""Expand an "administrator" to a list of authorized users."""
for ep in pkg_resources.iter_entry_points('invirt.authz', cfg.authz.name):
return ep.load().expandAdmin(name)