NIHVIVO-3523 Different RequestedActions may need different means of creating a URI. In particular, SimpleRequestedAction provides a different GUI for each instance.

This commit is contained in:
j2blake 2011-12-16 20:50:05 +00:00
parent fa34ce4293
commit bf27bddb46

View file

@ -8,7 +8,7 @@ public abstract class RequestedAction {
* In its most basic form, a RequestAction needs to have an identifier. * In its most basic form, a RequestAction needs to have an identifier.
* Sometimes this will be enough. * Sometimes this will be enough.
*/ */
public final String getURI() { public String getURI() {
return RequestActionConstants.actionNamespace + this.getClass().getName(); return RequestActionConstants.actionNamespace + this.getClass().getName();
} }