Ticket #270: Add stub for getHistory() in DummyConnection.

This commit is contained in:
Michael Jumper
2013-02-16 11:54:54 -08:00
parent 47e15e4063
commit 9937c90020

View File

@@ -1,9 +1,11 @@
package net.sourceforge.guacamole.net.basic.crud.connections;
import java.util.List;
import net.sourceforge.guacamole.GuacamoleException;
import net.sourceforge.guacamole.net.GuacamoleSocket;
import net.sourceforge.guacamole.net.auth.AbstractConnection;
import net.sourceforge.guacamole.net.auth.ConnectionRecord;
import net.sourceforge.guacamole.protocol.GuacamoleClientInformation;
/**
@@ -23,4 +25,9 @@ public class DummyConnection extends AbstractConnection {
throw new UnsupportedOperationException("Connection unsuppported in DummyConnection.");
}
@Override
public List<ConnectionRecord> getHistory() throws GuacamoleException {
throw new UnsupportedOperationException("History unsuppported in DummyConnection.");
}
}