update artifact ids to be consistent with other spring maven central artifact ids and different than BRITS

This commit is contained in:
Keith Donald
2009-03-12 21:03:04 +00:00
parent 1b7fa938ba
commit c92dad45f1
5 changed files with 11 additions and 7 deletions

View File

@@ -13,7 +13,8 @@
<evaluate expression="bookingService.createBooking(hotelId, currentUser.name)" result="flowScope.booking" />
</on-start>
<view-state id="enterBookingDetails" model="booking">
<view-state id="enterBookingDetails" model="booking">
<secured attributes="ROLE_SUPERVISOR"/>
<binder>
<binding property="checkinDate" converter="shortDate" required="true" />
<binding property="checkoutDate" converter="shortDate" required="true" />
@@ -26,7 +27,7 @@
<binding property="amenities" required="false" />
</binder>
<transition on="proceed" to="reviewBooking" />
<transition on="cancel" to="cancel" bind="false" />
<transition on="cancel" to="cancel" bind="false" />
</view-state>
<view-state id="reviewBooking" model="booking">
@@ -38,5 +39,8 @@
<end-state id="bookingConfirmed" commit="true" view="externalRedirect:servletRelative:/hotels/index" />
<end-state id="cancel" />
<global-transitions>
<transition on-exception="org.springframework.security.AccessDeniedException" to="cancel" />
</global-transitions>
</flow>