<?xml version='1.0' encoding='ISO-8859-1' ?>
<!DOCTYPE struts-config PUBLIC
          '-//Apache Software Foundation//DTD Struts Configuration 1.2//EN'
          'http://struts.apache.org/struts-config_1_2.dtd'>

<struts-config>

  <!--========================================================
  DATA SOURCES
  =========================================================-->

  <!--========================================================
  FORM BEANS
  =========================================================-->

  <form-beans>

  	<form-bean
  		name='libbForm'
  		type='com.crackwillow.struts.form.LogonImageButtonBeanForm'/>

  	<form-bean
  		name='lbfaForm'
  		type='com.crackwillow.struts.form.LogonButtonForm'/>

  	<form-bean
  		name='lndaForm'
  		type='com.crackwillow.struts.form.LogonNewDispatchForm'/>

  	<form-bean
  		name='lduaForm'
  		type='com.crackwillow.struts.form.LogonDispatchUtilForm'/>

  	<form-bean
  		name='lituForm'
  		type='com.crackwillow.struts.form.LogonImageTagUtilForm'/>

  </form-beans>

  <!--========================================================
  GLOBAL EXCEPTIONS
  =========================================================-->

  <!--========================================================
  GLOBAL FORWARDS
  =========================================================-->

  <!--========================================================
  ACTION MAPPINGS
  =========================================================-->

  <action-mappings>

 		<action
 			path="/logonLIBB"
 			name="libbForm"
 			scope="request"
 			input="/index.jsp"
 			validate="false"
 			type="com.crackwillow.struts.action.LogonImageButtonBeanAction" />

 		<action
 			path="/logonLBFA"
 			name="lbfaForm"
 			scope="request"
 			input="/index.jsp"
 			validate="false"
 			type="com.crackwillow.struts.action.LogonButtonFormAction" />

 		<action
 			path="/logonLNDA"
 			name="lndaForm"
 			scope="request"
 			input="/index.jsp"
 			validate="false"
 			type="com.crackwillow.struts.action.LogonNewDispatchAction" />

 		<action
 			path="/logonLITU"
 			name="lituForm"
 			scope="request"
 			input="/index.jsp"
 			validate="false"
 			type="com.crackwillow.struts.action.LogonImageTagUtilAction" />

 		<action
 			path="/logonLDUA"
 			name="lduaForm"
 			scope="request"
 			input="/index.jsp"
 			validate="false"
 			type="com.crackwillow.struts.action.LogonDispatchUtilAction" />



  </action-mappings>

  <!--========================================================
  CONTROLLER
  =========================================================-->

  <controller
    contentType='text/html;charset=UTF-8'
    locale='true'
    nocache='true'
    maxFileSize='10M'
    processorClass='org.apache.struts.action.RequestProcessor'>
  </controller>

 <!--========================================================
  MESSAGE RESOURCES DEFINITIONS
  =========================================================-->

  <message-resources
    parameter='properties.messages.messages'
    null='false'/>

  <!--========================================================
  PLUGIN DEFINITIONS
  =========================================================-->

</struts-config>