01: package com.jat.presentation.parameter;
02:
03: import java.util.Enumeration;
04: import javax.servlet.http.HttpServletRequest;
05:
06: import com.jat.presentation.PresentationException;
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 maurizio cesari
14: * @version 1.0
15: * @since 1.2
16: */
17:
18: public interface OptionPlugin {
19:
20: public Enumeration list(HttpServletRequest request,
21: String parameterName) throws PresentationException;
22: }
|