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

be.unamur.inference.web.UserSessionProcessor Maven / Gradle / Ivy

package be.unamur.inference.web;

/**
 * Interface declaring methods to process the sessions built by a
 * {@link UserSessionBuilder} object.
 * 
 * @author Xavier Devroey - [email protected]
 * 
 * @param  The type of {@link UserSession} built.
 */
public interface UserSessionProcessor> {

	/**
	 * This method is called by the {@link UserSessionBuilder} when a session
	 * has been built.
	 * 
	 * @param session The built session.
	 */
	public void process(T session);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy