Add missing JavaDoc.

This commit is contained in:
Michael Jumper
2013-02-20 21:51:09 -08:00
parent a86f1a7c7f
commit 586c9b4f83
8 changed files with 81 additions and 5 deletions

View File

@@ -57,6 +57,9 @@ import org.slf4j.LoggerFactory;
*/
public abstract class GuacamoleHTTPTunnelServlet extends HttpServlet {
/**
* Logger for this class.
*/
private Logger logger = LoggerFactory.getLogger(GuacamoleHTTPTunnelServlet.class);
/**

View File

@@ -53,8 +53,14 @@ import org.slf4j.LoggerFactory;
*/
public class GuacamoleSession {
/**
* Logger for this class.
*/
private Logger logger = LoggerFactory.getLogger(GuacamoleSession.class);
/**
* Map of all currently attached tunnels, indexed by tunnel UUID.
*/
private ConcurrentMap<String, GuacamoleTunnel> tunnels;
/**