-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Basic WAC like access control #17
Comments
The requirement for this is
|
Building the AuthZ layer one immediately comes to to think about inheritance of Access Control Rules. This happens as follows just by thinking about building a test suite:
WAC has support for a basic form of default inheritance, but default reasoning is awakward on the semantic web, and so proposed using an In order to implement Access Control flexibly I added a basic system of Free Monad Scripts defined in SolidCmd.scala. This allows one to for example write a script that fetches a graph and the transitive closure of its :imports related graphs. One advantage is that it makes it possible to test the script with a mock The result of running the Free Monad, is a Cofree Comonad, which interestingly enough is the structure of a RDF Dataset! |
Add Basic WAC access control
The text was updated successfully, but these errors were encountered: