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
* construct the HttpTunnelRequest.
* construct the HTTPTunnelRequest.
*/
private final Map<String, List<String>> parameterMap =
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
* be specified, for example).
*
* @param request The TunnelRequest associated with the connection
* request received. Any parameters specified along with
* the connection request can be read from this object.
* @return A newly constructed GuacamoleTunnel if successful,
* null otherwise.
* @throws GuacamoleException If an error occurs while constructing the
* GuacamoleTunnel, or if the conditions
* required for connection are not met.
* @param request
* The TunnelRequest associated with the connection request received.
* Any parameters specified along with the connection request can be
* read from this object.
*
* @return
* A newly constructed GuacamoleTunnel if successful, null otherwise.
*
* @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)
throws GuacamoleException;