01: /*****************************************************************************
02: * Copyright (C) NanoContainer Organization. All rights reserved. *
03: * ------------------------------------------------------------------------- *
04: * The software in this package is published under the terms of the BSD *
05: * style license a copy of which has been included with this distribution in *
06: * the LICENSE.txt file. *
07: * *
08: *****************************************************************************/package com.opensymphony.webwork.pico;
09:
10: import java.util.Map;
11:
12: import com.opensymphony.xwork.ActionProxy;
13: import com.opensymphony.xwork.DefaultActionInvocation;
14:
15: /**
16: * Implementation of {@link com.opensymphony.xwork.ActionInvocation ActionInvocation}
17: * which uses a PicoContainer to create Action instances.
18: *
19: * @author Chris Sturm
20: * @author Aslak Hellesøy
21: * @deprecated Use DefaultActionInvocation
22: */
23: public class PicoActionInvocation extends DefaultActionInvocation {
24:
25: public PicoActionInvocation(ActionProxy proxy) throws Exception {
26: super (proxy);
27: }
28:
29: public PicoActionInvocation(ActionProxy proxy, Map extraContext)
30: throws Exception {
31: super (proxy, extraContext);
32: }
33:
34: public PicoActionInvocation(ActionProxy proxy, Map extraContext,
35: boolean pushAction) throws Exception {
36: super(proxy, extraContext, pushAction);
37: }
38:
39: }
|