⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ajaxfilter.java

📁 Ajax 框架,可以用来做数型菜单或者联动下拉列表
💻 JAVA
字号:
/*
 * Copyright 2005 Joe Walker
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.directwebremoting;

import java.io.IOException;
import java.lang.reflect.Method;

/** 
 * A filter is a way to insert procesing tasks at various points during the
 * processing of an Ajax call.
 * <p>Example filters:</p>
 * <ul>
 * <li>Authentication</li>
 * <li>Latency simulators</li>
 * <li>Data cleansing - remove private data</li>
 * <li>Logging filters - when you need specific logging action</li>
 * </ul>
 * @since DWR 2.0
 * @author Joe Walker [joe at getahead dot ltd dot uk]
 */
public interface AjaxFilter
{
    /**
     * The <code>doFilter</code> method of the AjaxFilter is called by DWR each
     * time an Ajax request is made on a method that this filter is configured
     * against. The <code>AjaxFilterChain<code> passed in to this method allows
     * the filter to pass on method details to next entity in the chain.
     * <p>Typically the method would do the following:</p>
     * <ol>
     * <li>Examine the request</li>
     * <li>Optionally alter the method, object or parameters</li>
     * <li>Either invoke the next entity in the chain using the AjaxFilterChain
     * or decide to take some other action instead.</li>
     * <li>Optionally modify the value returned to the user</li>
     * <li>Take some other action (e.g. logging)</li>
     * </ol>
     * @param obj The object to execute the method on (i.e. 'this')
     * @param method The method to execute
     * @param params The parameters to the method call
     * @param chain Allow the request to be passed on
     * @return The results of the method execution
     * @throws IOException When some I/O error occurs
     * @throws Exception When some processing goes wrong
     */
    public Object doFilter(Object obj, Method method, Object[] params, AjaxFilterChain chain) throws Exception;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -