From 009eec14ec333213fb88f77737b747781ca01f54 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Sat, 16 Feb 2013 02:57:00 -0800 Subject: [PATCH] Ticket #270: Add stub for getHistory() in SimpleConnection. --- .../guacamole/net/auth/simple/SimpleConnection.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/guacamole-ext/src/main/java/net/sourceforge/guacamole/net/auth/simple/SimpleConnection.java b/guacamole-ext/src/main/java/net/sourceforge/guacamole/net/auth/simple/SimpleConnection.java index b85a5b6b9..7cc482704 100644 --- a/guacamole-ext/src/main/java/net/sourceforge/guacamole/net/auth/simple/SimpleConnection.java +++ b/guacamole-ext/src/main/java/net/sourceforge/guacamole/net/auth/simple/SimpleConnection.java @@ -37,10 +37,13 @@ package net.sourceforge.guacamole.net.auth.simple; * * ***** END LICENSE BLOCK ***** */ +import java.util.Collections; +import java.util.List; import net.sourceforge.guacamole.GuacamoleException; import net.sourceforge.guacamole.net.GuacamoleSocket; import net.sourceforge.guacamole.net.InetGuacamoleSocket; import net.sourceforge.guacamole.net.auth.AbstractConnection; +import net.sourceforge.guacamole.net.auth.ConnectionRecord; import net.sourceforge.guacamole.properties.GuacamoleProperties; import net.sourceforge.guacamole.protocol.ConfiguredGuacamoleSocket; import net.sourceforge.guacamole.protocol.GuacamoleClientInformation; @@ -101,4 +104,9 @@ public class SimpleConnection extends AbstractConnection { } + @Override + public List getHistory() throws GuacamoleException { + return Collections.EMPTY_LIST; + } + }