GUAC-1427: Fix formatting and capitalization of comments.

This commit is contained in:
James Muehlner
2015-12-14 22:46:45 -08:00
parent a5e7cecc27
commit b4dbaf5bdb
2 changed files with 12 additions and 9 deletions

View File

@@ -38,7 +38,7 @@ public class HTTPTunnelRequest extends TunnelRequest {
/** /**
* A copy of the parameters obtained from the HttpServletRequest used to * A copy of the parameters obtained from the HttpServletRequest used to
* construct the HttpTunnelRequest. * construct the HTTPTunnelRequest.
*/ */
private final Map<String, List<String>> parameterMap = private final Map<String, List<String>> parameterMap =
new HashMap<String, List<String>>(); new HashMap<String, List<String>>();

View File

@@ -213,14 +213,17 @@ public abstract class GuacamoleWebSocketTunnelServlet extends WebSocketServlet {
* result of this connection request (whether some sort of credentials must * result of this connection request (whether some sort of credentials must
* be specified, for example). * be specified, for example).
* *
* @param request The TunnelRequest associated with the connection * @param request
* request received. Any parameters specified along with * The TunnelRequest associated with the connection request received.
* the connection request can be read from this object. * Any parameters specified along with the connection request can be
* @return A newly constructed GuacamoleTunnel if successful, * read from this object.
* null otherwise. *
* @throws GuacamoleException If an error occurs while constructing the * @return
* GuacamoleTunnel, or if the conditions * A newly constructed GuacamoleTunnel if successful, null otherwise.
* required for connection are not met. *
* @throws GuacamoleException
* If an error occurs while constructing the GuacamoleTunnel, or if the
* conditions required for connection are not met.
*/ */
protected abstract GuacamoleTunnel doConnect(TunnelRequest request) protected abstract GuacamoleTunnel doConnect(TunnelRequest request)
throws GuacamoleException; throws GuacamoleException;