mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-07 21:51:23 +00:00
Ticket #270: Add stub for getHistory() in DummyConnection.
This commit is contained in:
@@ -1,9 +1,11 @@
|
|||||||
|
|
||||||
package net.sourceforge.guacamole.net.basic.crud.connections;
|
package net.sourceforge.guacamole.net.basic.crud.connections;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
import net.sourceforge.guacamole.GuacamoleException;
|
import net.sourceforge.guacamole.GuacamoleException;
|
||||||
import net.sourceforge.guacamole.net.GuacamoleSocket;
|
import net.sourceforge.guacamole.net.GuacamoleSocket;
|
||||||
import net.sourceforge.guacamole.net.auth.AbstractConnection;
|
import net.sourceforge.guacamole.net.auth.AbstractConnection;
|
||||||
|
import net.sourceforge.guacamole.net.auth.ConnectionRecord;
|
||||||
import net.sourceforge.guacamole.protocol.GuacamoleClientInformation;
|
import net.sourceforge.guacamole.protocol.GuacamoleClientInformation;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -23,4 +25,9 @@ public class DummyConnection extends AbstractConnection {
|
|||||||
throw new UnsupportedOperationException("Connection unsuppported in DummyConnection.");
|
throw new UnsupportedOperationException("Connection unsuppported in DummyConnection.");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public List<ConnectionRecord> getHistory() throws GuacamoleException {
|
||||||
|
throw new UnsupportedOperationException("History unsuppported in DummyConnection.");
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user