| Net-FluidDB documentation | view source | Contained in the Net-FluidDB distribution. |
Net::FluidDB::Permission - FluidDB permissions
use Net::FluidDB::Permission;
# get
$permission = Net::FluidDB::Permission->get($fdb, $category, $path, $action);
$permission->policy;
$permission->exceptions;
# update
$permission->policy('closed');
$permission->exceptions($exceptions);
$permission->update;
Net::FluidDB::Permission models FluidDB permissions.
Net::FluidDB::Permission is a subclass of Net::FluidDB::ACL.
Retrieves the permission on action $action, for the category $category and path $path.
Net::FluidDB provides a convenience shortcut for this method.
Updates the permission in FluidDB.
Returns the category the permission is about.
Returns the path of the category the permission is about.
Returns the action the permission is about.
http://doc.fluidinfo.com/fluidDB/api/http.html#authentication-and-authorization
Xavier Noria (FXN), <fxn@cpan.org>
Copyright (C) 2009-2011 Xavier Noria
This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.
| Net-FluidDB documentation | view source | Contained in the Net-FluidDB distribution. |