removed #{} delimiters

This commit is contained in:
Keith Donald
2007-10-15 06:10:50 +00:00
parent ebc3744fd4
commit eccde24b46

View File

@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<flow xmlns="http://www.springframework.org/schema/webflow"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/webflow
<?xml version="1.0" encoding="UTF-8"?>
<flow xmlns="http://www.springframework.org/schema/webflow"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/webflow
http://www.springframework.org/schema/webflow/spring-webflow-1.0.xsd">
<attribute name="description" value="The main flow of the application that handles searching for hotels to book"/>
@@ -39,7 +39,7 @@
<action-state id="cancelBooking">
<bean-action method="cancelBooking" bean="bookingService">
<method-arguments>
<argument expression="#{requestParameters.bookingId}" parameter-type="long"/>
<argument expression="requestParameters.bookingId" parameter-type="long"/>
</method-arguments>
</bean-action>
<transition on="success" to="reloadCurrentUserBookings" />
@@ -50,6 +50,6 @@
<transition on="success" to="displayMain" />
</action-state>
<import resource="main-beans.xml" />
<import resource="main-beans.xml" />
</flow>