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/30 23:45:00 UTC

[48/50] guacamole-client git commit: GUACAMOLE-197: Change RADIUS server to RADIUS hostname.

GUACAMOLE-197: Change RADIUS server to RADIUS hostname.


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

Branch: refs/heads/master
Commit: 789da685745ebaf2c54096b17b5d6ddbf06bd7ac
Parents: 037913a
Author: Nick Couchman <vn...@apache.org>
Authored: Tue Jan 30 18:33:13 2018 -0500
Committer: Nick Couchman <vn...@apache.org>
Committed: Tue Jan 30 18:33:13 2018 -0500

----------------------------------------------------------------------
 .../org/apache/guacamole/auth/radius/ConfigurationService.java | 2 +-
 .../guacamole/auth/radius/RadiusGuacamoleProperties.java       | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/guacamole-client/blob/789da685/extensions/guacamole-auth-radius/src/main/java/org/apache/guacamole/auth/radius/ConfigurationService.java
----------------------------------------------------------------------
diff --git a/extensions/guacamole-auth-radius/src/main/java/org/apache/guacamole/auth/radius/ConfigurationService.java b/extensions/guacamole-auth-radius/src/main/java/org/apache/guacamole/auth/radius/ConfigurationService.java
index c903a38..97cc39c 100644
--- a/extensions/guacamole-auth-radius/src/main/java/org/apache/guacamole/auth/radius/ConfigurationService.java
+++ b/extensions/guacamole-auth-radius/src/main/java/org/apache/guacamole/auth/radius/ConfigurationService.java
@@ -47,7 +47,7 @@ public class ConfigurationService {
      */
     public String getRadiusServer() throws GuacamoleException {
         return environment.getProperty(
-            RadiusGuacamoleProperties.RADIUS_SERVER,
+            RadiusGuacamoleProperties.RADIUS_HOSTNAME,
             "localhost"
         );
     }

http://git-wip-us.apache.org/repos/asf/guacamole-client/blob/789da685/extensions/guacamole-auth-radius/src/main/java/org/apache/guacamole/auth/radius/RadiusGuacamoleProperties.java
----------------------------------------------------------------------
diff --git a/extensions/guacamole-auth-radius/src/main/java/org/apache/guacamole/auth/radius/RadiusGuacamoleProperties.java b/extensions/guacamole-auth-radius/src/main/java/org/apache/guacamole/auth/radius/RadiusGuacamoleProperties.java
index 49fa1b6..144d824 100644
--- a/extensions/guacamole-auth-radius/src/main/java/org/apache/guacamole/auth/radius/RadiusGuacamoleProperties.java
+++ b/extensions/guacamole-auth-radius/src/main/java/org/apache/guacamole/auth/radius/RadiusGuacamoleProperties.java
@@ -58,12 +58,12 @@ public class RadiusGuacamoleProperties {
 
 
     /**
-     * The hostname or ip of the RADIUS server to connect to when authenticating users.
+     * The hostname or IP address of the RADIUS server to connect to when authenticating users.
      */
-    public static final StringGuacamoleProperty RADIUS_SERVER = new StringGuacamoleProperty() {
+    public static final StringGuacamoleProperty RADIUS_HOSTNAME = new StringGuacamoleProperty() {
 
         @Override
-        public String getName() { return "radius-server"; }
+        public String getName() { return "radius-hostname"; }
 
     };