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

net.anotheria.anosite.action.AbstractAction Maven / Gradle / Ivy

There is a newer version: 4.1.2
Show newest version
package net.anotheria.anosite.action;

import net.anotheria.anoplass.api.APICallContext;
import net.anotheria.anoplass.api.session.APISessionImpl;

public abstract class AbstractAction implements Action{
	
	/**
	 * no comment.
	 * @param name
	 * @param attribute
	 */
	protected void sendAttributeToPage(String name, Object attribute){
		((APISessionImpl)APICallContext.getCallContext().getCurrentSession()).addAttributeToActionScope(name, attribute);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy