diff --git a/webapp/src/edu/cornell/mannlib/vitro/webapp/auth/requestedAction/ifaces/RequestedAction.java b/webapp/src/edu/cornell/mannlib/vitro/webapp/auth/requestedAction/ifaces/RequestedAction.java index b22a3e5c6..cbc94ee1e 100644 --- a/webapp/src/edu/cornell/mannlib/vitro/webapp/auth/requestedAction/ifaces/RequestedAction.java +++ b/webapp/src/edu/cornell/mannlib/vitro/webapp/auth/requestedAction/ifaces/RequestedAction.java @@ -8,7 +8,7 @@ public abstract class RequestedAction { * In its most basic form, a RequestAction needs to have an identifier. * Sometimes this will be enough. */ - public final String getURI() { + public String getURI() { return RequestActionConstants.actionNamespace + this.getClass().getName(); }