org.apache.pluto.tags.DefineObjectsTag violates Portlet spec
------------------------------------------------------------

         Key: PLUTO-135
         URL: http://issues.apache.org/jira/browse/PLUTO-135
     Project: Pluto
        Type: Bug
  Components: portlet container  
    Versions: Current CVS    
    Reporter: Ulrich Küster
    Priority: Minor


I think there is a bug in class TEI.getVariableInfo:

       public VariableInfo [] getVariableInfo (TagData tagData)
        {
            VariableInfo [] info = new VariableInfo [] {
                new VariableInfo("renderRequest",
                                 "javax.portlet.PortletRequest",           
<<<=========== This variable should be declared as javax.portlet.RenderRequest 
according to spec PLT.22.1
                                 true,
                                 VariableInfo.AT_BEGIN),
                new VariableInfo("renderResponse",
                                 "javax.portlet.RenderResponse",
                                 true,
                                 VariableInfo.AT_BEGIN),
                new VariableInfo("portletConfig",
                                 "javax.portlet.PortletConfig",
                                 true,
                                 VariableInfo.AT_BEGIN)
            };

            return info;
        }



-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira

Reply via email to