Skip to content
This repository has been archived by the owner on Jul 18, 2022. It is now read-only.

Commit

Permalink
CLEREZZA-721:
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/incubator/clerezza/trunk@1415762 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
retog committed Nov 30, 2012
1 parent d2e3c42 commit 0a9e680
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -286,9 +286,10 @@ public GraphNode getScript(
@Path("script-list")
@Produces("text/plain")
public GraphNode getScriptList(
@QueryParam(value = "resource") NonLiteral resource) {
@QueryParam(value = "resource") UriRef uriRef) {

AccessController.checkPermission(new ScriptManagerAppPermission());
NonLiteral resource = uriRef;
if(resource == null) {
resource = new BNode();
}
Expand Down

0 comments on commit 0a9e680

Please sign in to comment.