01: package com.jat.presentation.parameter;
02:
03: import java.util.Enumeration;
04: import javax.servlet.http.HttpServletRequest;
05:
06: import com.jat.presentation.controller.ActionFactory;
07:
08: /**
09: * <p>Title: JAT</p>
10: * <p>Description: </p>
11: * <p>Copyright: Copyright (c) 2004 -2005 Stefano Fratini (stefano.fratini@gmail.com)</p>
12: * <p>Distributed under the terms of the GNU Lesser General Public License, v2.1 or later</p>
13: * @author stf
14: * @version 1.0
15: * @since 1.2
16: */
17:
18: public class ActionList implements OptionPlugin {
19: public Enumeration list(HttpServletRequest request,
20: String parameterName) {
21: return ActionFactory.getDefault().names();
22: }
23: }
|