You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@guacamole.apache.org by mj...@apache.org on 2018/01/31 04:46:10 UTC

[1/2] guacamole-client git commit: GUACAMOLE-197: Add overrides for compatibility with extension decoration.

Repository: guacamole-client
Updated Branches:
  refs/heads/master 64ba8a852 -> a050c1602


GUACAMOLE-197: Add overrides for compatibility with extension decoration.


Project: http://git-wip-us.apache.org/repos/asf/guacamole-client/repo
Commit: http://git-wip-us.apache.org/repos/asf/guacamole-client/commit/d032e76a
Tree: http://git-wip-us.apache.org/repos/asf/guacamole-client/tree/d032e76a
Diff: http://git-wip-us.apache.org/repos/asf/guacamole-client/diff/d032e76a

Branch: refs/heads/master
Commit: d032e76aa9c383b1a9e880671a0eb52169f250e9
Parents: 64ba8a8
Author: Nick Couchman <vn...@apache.org>
Authored: Tue Jan 30 22:06:27 2018 -0500
Committer: Nick Couchman <vn...@apache.org>
Committed: Tue Jan 30 22:06:27 2018 -0500

----------------------------------------------------------------------
 .../auth/radius/RadiusAuthenticationProvider.java     | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/guacamole-client/blob/d032e76a/extensions/guacamole-auth-radius/src/main/java/org/apache/guacamole/auth/radius/RadiusAuthenticationProvider.java
----------------------------------------------------------------------
diff --git a/extensions/guacamole-auth-radius/src/main/java/org/apache/guacamole/auth/radius/RadiusAuthenticationProvider.java b/extensions/guacamole-auth-radius/src/main/java/org/apache/guacamole/auth/radius/RadiusAuthenticationProvider.java
index f222740..02c23de 100644
--- a/extensions/guacamole-auth-radius/src/main/java/org/apache/guacamole/auth/radius/RadiusAuthenticationProvider.java
+++ b/extensions/guacamole-auth-radius/src/main/java/org/apache/guacamole/auth/radius/RadiusAuthenticationProvider.java
@@ -69,6 +69,20 @@ public class RadiusAuthenticationProvider implements AuthenticationProvider {
     }
 
     @Override
+    public UserContext decorate(UserContext context,
+            AuthenticatedUser authenticatedUser, Credentials credentials)
+            throws GuacamoleException {
+        return context;
+    }
+
+    @Override
+    public UserContext redecorate(UserContext decorated, UserContext context,
+            AuthenticatedUser authenticatedUser, Credentials credentials)
+            throws GuacamoleException {
+        return context;
+    }
+
+    @Override
     public void shutdown() {
         // Do nothing
     }


[2/2] guacamole-client git commit: GUACAMOLE-197: Merge corrections to API compatibility for RADIUS auth.

Posted by mj...@apache.org.
GUACAMOLE-197: Merge corrections to API compatibility for RADIUS auth.


Project: http://git-wip-us.apache.org/repos/asf/guacamole-client/repo
Commit: http://git-wip-us.apache.org/repos/asf/guacamole-client/commit/a050c160
Tree: http://git-wip-us.apache.org/repos/asf/guacamole-client/tree/a050c160
Diff: http://git-wip-us.apache.org/repos/asf/guacamole-client/diff/a050c160

Branch: refs/heads/master
Commit: a050c1602033ee0b8303302e05530100faedb8d8
Parents: 64ba8a8 d032e76
Author: Michael Jumper <mj...@apache.org>
Authored: Tue Jan 30 20:24:53 2018 -0800
Committer: Michael Jumper <mj...@apache.org>
Committed: Tue Jan 30 20:28:52 2018 -0800

----------------------------------------------------------------------
 .../auth/radius/RadiusAuthenticationProvider.java     | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
----------------------------------------------------------------------