'cimande-core.xml'

From BlueOxygen Wiki

Jump to: navigation, search
<?xml version="1.0" encoding="UTF-8" ?>
 
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
    "http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
	<package name="workshop" extends="default" namespace="/module/workshop">
		<action name="create"
			class="org.blueoxygen.workshop.item.ItemForm">
			<result name="success" type="velocity">
				/view/module/workshop/form.vm
			</result>
			<result name="error">/errors/errors.vm</result>
		</action>
		<action name="filter"
			class="org.blueoxygen.workshop.item.ItemForm">
			<result name="success" type="velocity">
				/view/module/workshop/filter.vm
			</result>
			<result name="error">/errors/errors.vm</result>
		</action>
		<action name="save"
			class="org.blueoxygen.workshop.item.SaveItem">
			<result name="success" type="velocity">
				/view/module/workshop/success.vm
			</result>
			<result name="input" type="velocity">
				/view/module/workshop/form.vm
			</result>
			<result name="error">/errors/errors.vm</result>
		</action>
	</package>
 
 
</struts>
Personal tools