All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.zkoss.zk.ui.http.ScriptManagerImpl Maven / Gradle / Ivy

There is a newer version: 10.0.0-jakarta
Show newest version
/* 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;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy