Github user mike-jumper commented on a diff in the pull request:
https://github.com/apache/incubator-guacamole-client/pull/184#discussion_r143105331
--- Diff:
guacamole/src/main/java/org/apache/guacamole/tunnel/TunnelRequestService.java
---
@@ -58,6 +62,58 @@
private AuthenticationService authenticationService;
/**
+ * A service for notifying listeners about tunnel connect/closed
events.
+ */
+ @Inject
+ private ListenerService listenerService;
+
+ /**
+ * Notifies bound listeners that a new tunnel has been connected.
+ * Listeners may veto a connected tunnel by throwing any
GuacamoleException.
+ *
+ * @param userContext
+ * The UserContext associated with the user for whom the tunnel is
+ * being created.
+ *
+ * @param credentials
+ * Credentials that authenticate the user
--- End diff --
Missing period.
---