/* ScriptManagerImpl.java Purpose: Description: History: Tue Oct 15 10:24:33 TST 2013, Created by RaymondChao Copyright (C) 2013 Potix Corporation. All Rights Reserved. {{IS_RIGHT This program is distributed under LGPL Version 3.0 in the hope that it will be useful, but WITHOUT ANY WARRANTY. }}IS_RIGHT */ package org.zkoss.zk.ui.http; import javax.servlet.ServletRequest; /** * The default implementation of the script manager ({@link ScriptManager}). * @author RaymondChao * @since 7.0.0 */ public class ScriptManagerImpl implements ScriptManager { public boolean isScriptIgnored(ServletRequest request, String jspath) { // Do nothing. return false; } }