mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 05:07:41 +00:00
TunnelEvent interface.
This commit is contained in:
@@ -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();
|
||||||
|
|
||||||
|
}
|
Reference in New Issue
Block a user