TunnelEvent interface.

This commit is contained in:
Michael Jumper
2012-03-23 12:00:37 -07:00
parent d99d38a9b6
commit fe7de5201a

View File

@@ -0,0 +1,20 @@
package net.sourceforge.guacamole.net.event;
import net.sourceforge.guacamole.net.GuacamoleTunnel;
/**
* Abstract basis for events associated with tunnels.
*
* @author Michael Jumper
*/
public interface TunnelEvent {
/**
* Returns the tunnel associated with this event, if any.
*
* @return The tunnel associated with this event, if any, or null if no
* tunnel is associated with this event.
*/
public GuacamoleTunnel getTunnel();
}