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

org.ajax4jsf.framework.ajax.ViewIdHolder Maven / Gradle / Ivy

Go to download

Ajax4jsf is an open source extension to the JavaServer Faces standard that adds AJAX capability to JSF applications without requiring the writing of any JavaScript.

The newest version!
package org.ajax4jsf.framework.ajax;

/**
 * Interface to skip navigation cases in ViewHandler and , instead, store new ViewId.
 * @author shura
 *
 */
public interface ViewIdHolder {
	
	public boolean skipNavigation(String ViewId);
	
	public String getViewId();
	
	public void setViewId(String newViewId);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy