GUACAMOLE-1218: Update to version 1.3.0 of guacamole-ext.

This commit is contained in:
Michael Jumper
2020-11-20 14:00:24 -08:00
parent 2a0f063a3b
commit 2fefc991df
3 changed files with 5 additions and 12 deletions

View File

@@ -22,7 +22,6 @@ package org.apache.guacamole.auth.json.user;
import com.google.inject.Inject;
import java.util.Collections;
import java.util.Date;
import java.util.List;
import java.util.Map;
import java.util.Set;
import org.apache.guacamole.GuacamoleException;
@@ -30,7 +29,6 @@ import org.apache.guacamole.GuacamoleSecurityException;
import org.apache.guacamole.auth.json.connection.ConnectionService;
import org.apache.guacamole.net.GuacamoleTunnel;
import org.apache.guacamole.net.auth.Connection;
import org.apache.guacamole.net.auth.ConnectionRecord;
import org.apache.guacamole.protocol.GuacamoleClientInformation;
import org.apache.guacamole.protocol.GuacamoleConfiguration;
@@ -158,11 +156,6 @@ public class UserDataConnection implements Connection {
return null;
}
@Override
public List<? extends ConnectionRecord> getHistory() throws GuacamoleException {
return Collections.<ConnectionRecord>emptyList();
}
@Override
public Set<String> getSharingProfileIdentifiers() throws GuacamoleException {
return Collections.<String>emptySet();
@@ -174,8 +167,8 @@ public class UserDataConnection implements Connection {
}
@Override
public GuacamoleTunnel connect(GuacamoleClientInformation info)
throws GuacamoleException {
public GuacamoleTunnel connect(GuacamoleClientInformation info,
Map<String, String> tokens) throws GuacamoleException {
// Prevent future use immediately upon connect
if (connection.isSingleUse()) {

View File

@@ -1,6 +1,6 @@
{
"guacamoleVersion" : "1.0.0",
"guacamoleVersion" : "1.3.0",
"name" : "Encrypted JSON Authentication",
"namespace" : "guac-json",