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

@@ -26,7 +26,7 @@
<groupId>org.apache.guacamole</groupId> <groupId>org.apache.guacamole</groupId>
<artifactId>guacamole-auth-json</artifactId> <artifactId>guacamole-auth-json</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>1.0.0-1</version> <version>1.3.0</version>
<name>guacamole-auth-json</name> <name>guacamole-auth-json</name>
<url>http://guacamole.apache.org/</url> <url>http://guacamole.apache.org/</url>
@@ -82,7 +82,7 @@
<dependency> <dependency>
<groupId>org.apache.guacamole</groupId> <groupId>org.apache.guacamole</groupId>
<artifactId>guacamole-ext</artifactId> <artifactId>guacamole-ext</artifactId>
<version>1.0.0</version> <version>1.3.0</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>

View File

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

View File

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