Home » xwork-2.1.5 » com.opensymphony » xwork2 » interceptor » [javadoc | source]

    1   /*
    2    * Copyright (c) 2002-2007 by OpenSymphony
    3    * All rights reserved.
    4    */
    5   package com.opensymphony.xwork2.interceptor;
    6   
    7   
    8   /**
    9    * Marker interface to incidate no auto setting of parameters.
   10    * <p/>
   11    * This marker interface should be implemented by actions that do not want any
   12    * request parameters set on them automatically (by the ParametersInterceptor).
   13    * This may be useful if one is using the action tag and want to supply
   14    * the parameters to the action manually using the param tag.
   15    * It may also be useful if one for security reasons wants to make sure that
   16    * parameters cannot be set by malicious users.
   17    *
   18    * @author Dick Zetterberg (dick@transitor.se)
   19    */
   20   public interface NoParameters {
   21   }

Home » xwork-2.1.5 » com.opensymphony » xwork2 » interceptor » [javadoc | source]