Advanced Customization > Business Logic Customization > Reservation Service > Using the Reservation Client Tools
  
Using the Reservation Client Tools
Reservation client tools are available to simplify the implementation of reservations in the Windchill user interface.
Simple additions to an action window JSP file automatically include the implementation steps described in Typical Reservation Service Implementation Steps.
To include reservations in an action window, add the following lines to the JSP file:
Declare the reservation tag library:
<%@ taglib prefix="rwiz" uri="http://www.ptc.com/windchill/taglib/reservation"%>
Use the configureReservation tag:
<rwiz:configureReservation reservationType="modify" enforcedByService="<true|false>"
adminOverride="<true|false>" workflowOverride="<true|false>"/>
The reservationType parameter is required and currently must be set to modify. The remaining parameters are optional and can be set to true or false (the default is false).
For more information, see the Windchill Javadoc description of the Reservation class.
For an example of how the reservation client tool is used, see Sample Code: Reservation Service.