Details
Description
loadParameters() calls setParameter(String, String[]) on a javax.portlet.PortletURL
In Jetspeed's implementation of that class, if the second argument is an empty array,
an exception is thrown saying:
"name and values must not be null or values be an empty array"
So, line 116 of PortletLink can become:
if (values != null && values.length>0)
Now, I don't know if JSR-168 says something about what kind of arguments are allowed for
the setParameter method, so maybe Jetspeed is also to blame here...
Attachments
Issue Links
- is blocked by
-
PLUTO-187 Inconsistent implementation of PortletUrl
- Resolved