<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.1//EN"
                               "http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd">
<struts-config>
 <data-sources/>
 <form-beans/>
 <global-exceptions/>
 <global-forwards/>
 <action-mappings>
 <action path="/forward" scope="request" type="com.coolshare.framework.common.action.Forward">
 </action>

<action path="/petstore.doctor" scope="request" type="com.xxx.samples.petstore.webapp.action.doctor.DoctorAction">
  <forward name="ok" path="/pages/samples/petstore/doctor/doctor.jsp"/>
 </action>
 <action path="/petstore.doctor.list" scope="request" type="com.xxx.samples.petstore.webapp.action.doctor.DoctorListAction">
  <forward name="ok" path="/pages/samples/petstore/doctor/doctor_list.jsp"/>
 </action>
 <action path="/petstore.doctor.edit" scope="request" type="com.xxx.samples.petstore.webapp.action.doctor.DoctorEditAction">
  <forward name="ok" path="/pages/samples/petstore/doctor/doctor_edit.jsp"/>
 </action>
<action path="/petstore.datastorage" scope="request" type="com.xxx.samples.petstore.webapp.action.datastorage.DataStorageAction">
  <forward name="ok" path="/pages/samples/petstore/datastorage/datastorage.jsp"/>
 </action>
 <action path="/petstore.datastorage.list" scope="request" type="com.xxx.samples.petstore.webapp.action.datastorage.DataStorageListAction">
  <forward name="ok" path="/pages/samples/petstore/datastorage/datastorage_list.jsp"/>
 </action>
 <action path="/petstore.datastorage.edit" scope="request" type="com.xxx.samples.petstore.webapp.action.datastorage.DataStorageEditAction">
  <forward name="ok" path="/pages/samples/petstore/datastorage/datastorage_edit.jsp"/>
 </action>
<action path="/petstore.pet" scope="request" type="com.xxx.samples.petstore.webapp.action.pet.PetAction">
  <forward name="ok" path="/pages/samples/petstore/pet/pet.jsp"/>
 </action>
 <action path="/petstore.pet.list" scope="request" type="com.xxx.samples.petstore.webapp.action.pet.PetListAction">
  <forward name="ok" path="/pages/samples/petstore/pet/pet_list.jsp"/>
 </action>
 <action path="/petstore.pet.edit" scope="request" type="com.xxx.samples.petstore.webapp.action.pet.PetEditAction">
  <forward name="ok" path="/pages/samples/petstore/pet/pet_edit.jsp"/>
 </action>
<action path="/petstore.owner" scope="request" type="com.xxx.samples.petstore.webapp.action.owner.OwnerAction">
  <forward name="ok" path="/pages/samples/petstore/owner/owner.jsp"/>
 </action>
 <action path="/petstore.owner.list" scope="request" type="com.xxx.samples.petstore.webapp.action.owner.OwnerListAction">
  <forward name="ok" path="/pages/samples/petstore/owner/owner_list.jsp"/>
 </action>
 <action path="/petstore.owner.edit" scope="request" type="com.xxx.samples.petstore.webapp.action.owner.OwnerEditAction">
  <forward name="ok" path="/pages/samples/petstore/owner/owner_edit.jsp"/>
 </action>

 </action-mappings>
 <controller/>
</struts-config>

