Author: ekoneil
Date: Thu Apr 14 13:59:10 2005
New Revision: 161351

URL: http://svn.apache.org/viewcvs?view=rev&rev=161351
Log:
Fix for JIRA 456.

The page input type for the account creation page was incorrect.

BB: self
DRT: petstore account creation page runs


Modified:
    incubator/beehive/trunk/samples/petstoreWeb/account/create/Controller.jpf
    incubator/beehive/trunk/samples/petstoreWeb/account/create/create.jsp

Modified: 
incubator/beehive/trunk/samples/petstoreWeb/account/create/Controller.jpf
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/petstoreWeb/account/create/Controller.jpf?view=diff&r1=161350&r2=161351
==============================================================================
--- incubator/beehive/trunk/samples/petstoreWeb/account/create/Controller.jpf 
(original)
+++ incubator/beehive/trunk/samples/petstoreWeb/account/create/Controller.jpf 
Thu Apr 14 13:59:10 2005
@@ -80,7 +80,7 @@
                                   type = java.lang.String[].class,
                                   required = true),
                 @Jpf.ActionOutput(name = "categoryNames",
-                                  type = java.util.List.class,
+                                  type = java.lang.String[].class,
                                   required = true)
                 })
         }

Modified: incubator/beehive/trunk/samples/petstoreWeb/account/create/create.jsp
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/petstoreWeb/account/create/create.jsp?view=diff&r1=161350&r2=161351
==============================================================================
--- incubator/beehive/trunk/samples/petstoreWeb/account/create/create.jsp 
(original)
+++ incubator/beehive/trunk/samples/petstoreWeb/account/create/create.jsp Thu 
Apr 14 13:59:10 2005
@@ -5,7 +5,7 @@
 <%@ taglib uri="http://java.sun.com/jsp/jstl/core"; prefix="c"%>
 <%@ taglib prefix="beehive-petstore" tagdir="/WEB-INF/tags/beehive/petstore" %>
 
-<netui-data:declarePageInput name="categoryNames" type="java.util.List"/>
+<netui-data:declarePageInput name="categoryNames" type="java.lang.String[]"/>
 <netui-data:declarePageInput name="languages" type="java.lang.String[]"/>
 
 <netui-template:template templatePage="/site/template.jsp">


Reply via email to