01: /*
02: * Copyright (c) 2002-2006 by OpenSymphony
03: * All rights reserved.
04: */
05: package com.opensymphony.xwork.interceptor;
06:
07: /**
08: * This marker interface should be implemented by actions that do not want any
09: * parameters set on them automatically (by the ParametersActionFactoryProxy)
10: * This may be useful if one is using the action tag and want to supply
11: * the parameters to the action manually using the param tag.
12: * It may also be useful if one for security reasons wants to make sure that
13: * parameters cannot be set by malicious users.
14: *
15: * @author Dick Zetterberg (dick@transitor.se)
16: * @version $Revision: 860 $, $Date: 2006-03-03 16:10:09 +0100 (Fr, 03 Mrz 2006) $
17: */
18: public interface NoParameters {
19: }
|