1 /* 2 * Copyright (c) 2002-2003 by OpenSymphony 3 * All rights reserved. 4 */ 5 package com.opensymphony.webwork.interceptor; 6 7 8 /** 9 * This marker interface should be implemented by actions that do not want any parameters set on 10 * them automatically. 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. It may also be useful if one for 12 * security reasons wants to make sure that parameters cannot be set by malicious users. 13 * 14 * @author <a HREF="mailto:dick@transitor.se">Dick Zetterberg</a> 15 */ 16 public interface NoParameters extends com.opensymphony.xwork.interceptor.NoParameters { 17 } 18