01: /*
02: * Copyright (c) 2002-2003 by OpenSymphony
03: * All rights reserved.
04: */
05: package com.opensymphony.webwork.interceptor;
06:
07: /**
08: * This marker interface should be implemented by actions that do not want any parameters set on
09: * them automatically. This may be useful if one is using the action tag and want to supply
10: * the parameters to the action manually using the param tag. It may also be useful if one for
11: * security reasons wants to make sure that parameters cannot be set by malicious users.
12: *
13: * @author <a href="mailto:dick@transitor.se">Dick Zetterberg</a>
14: */
15: public interface NoParameters extends
16: com.opensymphony.xwork.interceptor.NoParameters {
17: }
|