tree: 421d2ebea8ae7afde2d6a237098ee18277e54426 [path history] [tgz]
  1. src/
  2. LICENSE
  3. license-header.txt
  4. NOTICE
  5. pom.xml
  6. readme.md
jena-permissions/readme.md

JenaPermissions is a SecurityEvaluator interface and a set of dynamic proxies that apply that interface to Jena Graphs, Models, and associated methods and classes.

The SecurityEvaluator class must be implemented. This class provides the interface to the authentication results (e.g. getPrincipal())) and the authorization system.

Create a SecuredGraph by calling Factory.getInstance( SecurityEvaluator, String, Graph ); Create a SecuredModel by calling Factory.getInstance( SecurityEvaluator, String, Model ) or ModelFactory.createModelForGraph( SecuredGraph );

NOTE: when creating a model by wrapping a secured graph (e.g. ModelFactory.createModelForGraph( SecuredGraph );) the resulting Model does not have the same permission requirements that the standard secured model does.

For instance when creating a list on a secured model calling model.createList( RDFNode[] ); The standard secured model verifies that the user has the right to update the triples and allows or denies the entire operation accordingly. The wrapped secured graph does not have visibility to the createList() command and can only operate on the instructions issued by the model.createList() implementation. In the standard implementation the model requests the graph to delete one triple and then insert another. Thus the user must have delete and add permissions, not the update permission.

There are several other cases where the difference in the layer can trip up the permission system. In all known cases the result is a tighter permission definition than was requested. For simplicity sake we recommend that the wrapped secured graph only be used in cases where access to the graph as a whole is granted/denied. In these cases the user either has all CRUD capabilities or none.

[] a ja:Model ; sec:baseModel jena:model ; ja:modelName “modelName”; sec:evaluatorFactory “javaclass”; .

jena:model A model defined in the assembler file. “modelName” The name of the model as identified in the security manager “javaclass” The name of a java class that implements a Evaluator Factory. The Factory must have static method getInstance() that returns a SecurityEvaluator.