From 0e5847d5d2f00d54f1d2ae49b4ec8466fc6fa83d Mon Sep 17 00:00:00 2001 From: j2blake Date: Fri, 30 Mar 2012 21:20:21 +0000 Subject: [PATCH] NIHVIVO-3404 Make instance fields on AbstractObjectPropertyStatementAction private. --- .../vivo/auth/policy/SelfEditorRelationshipPolicy.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/edu/cornell/mannlib/vivo/auth/policy/SelfEditorRelationshipPolicy.java b/src/edu/cornell/mannlib/vivo/auth/policy/SelfEditorRelationshipPolicy.java index 7f9bf674..1e162870 100644 --- a/src/edu/cornell/mannlib/vivo/auth/policy/SelfEditorRelationshipPolicy.java +++ b/src/edu/cornell/mannlib/vivo/auth/policy/SelfEditorRelationshipPolicy.java @@ -124,8 +124,8 @@ public class SelfEditorRelationshipPolicy extends AbstractRelationshipPolicy } private DistilledAction distill(AbstractObjectPropertyStatementAction action) { - return new DistilledAction(action.uriOfPredicate, action.uriOfSubject, - action.uriOfObject); + return new DistilledAction(action.getUriOfPredicate(), + action.getUriOfSubject(), action.getUriOfObject()); } private PolicyDecision isAuthorized(IdentifierBundle ids,