> Jason, I have to disagree with you on this. I've
> written a lot of WebWork apps and multiple aliases is
> rarely used (maybe 1-5% of the time for me). Perhaps
> you can give the common examples you come across so
> that we can understand your style better?
>
I think I posted this last week, but here's the Invoice CRUD action definitions:
<!-- Invoice CRUD Actions -->
<action name="listInvoice"
class="com.eplus.app.invoice.action.InvoiceCrudAction" method="list">
<interceptor-ref name="listStack"/>
<result name="CRUD-list"
type="freemarker">/template/eplus/metaDataList.ftl</result>
</action>
<action name="editInvoice"
class="com.eplus.app.invoice.action.InvoiceCrudAction">
<interceptor-ref name="editStack"/>
</action>
<action name="saveInvoice"
class="com.eplus.app.invoice.action.InvoiceCrudAction" method="save">
<interceptor-ref name="crudStack"/>
</action>
<action name="deleteInvoice"
class="com.eplus.app.invoice.action.InvoiceCrudAction" method="delete">
<interceptor-ref name="crudStack"/>
</action>
repeat for each entity in the system...
---------------------------------------------------------------------
Posted via Jive Forums
http://forums.opensymphony.com/thread.jspa?threadID=39135&messageID=77960#77960
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]