Differences in project created with
apache-beehive-1.0.1\ant\beehive-runtime.xml and documentation that describes it
--------------------------------------------------------------------------------------------------------------------
Key: BEEHIVE-1139
URL: http://issues.apache.org/jira/browse/BEEHIVE-1139
Project: Beehive
Issue Type: Bug
Components: Documentation, NetUI
Affects Versions: 1.0.1
Reporter: Petrenko Oleksandr
Priority: Minor
In docs there is the following example:
Controller.java
@Jpf.Controller(
simpleActions={
@Jpf.SimpleAction(name="begin", path="index.jsp"),
@Jpf.SimpleAction(name="toPage2", path="page2.jsp")
}
)
public class Controller extends PageFlowController
{
.....
}
and the actual annotation should look like:
@Jpf.Controller(
simpleActions = {
@Jpf.SimpleAction(name = "begin", path = "index.jsp"),
@Jpf.SimpleAction(name = "toPage2", path = "Page2.jsp")
}
)
public class Controller extends PageFlowController {
....
}
--
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