Show SessionListener.java syntax highlighted
/*
* Copyright (c) 2006
* Helsinki Institute of Physics
* see LICENSE file for details
*
* SessionListener.java
* Created on 10-May-2006
*/
package fi.hip.gb.core;
/**
* Listener for changes in the session objects.
*
* @author Juho Karppinen
*/
public interface SessionListener {
/**
* A new session is created.
*
* @param storage
* all information about the session
*/
public void sessionCreated(Storage storage);
}
See more files for this project here