Github user mike-jumper commented on a diff in the pull request:
https://github.com/apache/guacamole-client/pull/337#discussion_r232137320
--- Diff:
guacamole-ext/src/main/java/org/apache/guacamole/net/auth/AbstractUser.java ---
@@ -44,4 +51,164 @@ public void setPassword(String password) {
this.password = password;
}
+ /**
+ * {@inheritDoc}
+ *
+ * <p>This implementation simply an immutable, empty map.
Implementations
+ * that wish to expose custom attributes should override this function.
+ */
+ @Override
+ public Map<String, String> getAttributes() {
+ return Collections.<String, String>emptyMap();
--- End diff --
I think it can be inferred.
---