Remove @author tag from non third-party source files in console-proxy folder and repalce tab indention with 4 spaces

This commit is contained in:
Mice Xia 2012-08-13 15:26:03 +08:00
parent 89015cbf3c
commit b25122bd4d
8 changed files with 1567 additions and 1576 deletions

View File

@ -39,7 +39,6 @@ import com.sun.net.httpserver.HttpServer;
/** /**
* *
* @author Kelven Yang
* ConsoleProxy, singleton class that manages overall activities in console proxy process. To make legacy code work, we still * ConsoleProxy, singleton class that manages overall activities in console proxy process. To make legacy code work, we still
*/ */
public class ConsoleProxy { public class ConsoleProxy {

View File

@ -20,7 +20,6 @@ import java.awt.Image;
import java.util.List; import java.util.List;
/** /**
* @author Kelven Yang
* ConsoleProxyClient defines an standard interface that a console client should implement, * ConsoleProxyClient defines an standard interface that a console client should implement,
* *
* ConsoleProxyClient maintains a session towards the target host, it glues the session * ConsoleProxyClient maintains a session towards the target host, it glues the session

View File

@ -27,8 +27,6 @@ import com.cloud.consoleproxy.util.TileTracker;
import com.cloud.consoleproxy.vnc.FrameBufferCanvas; import com.cloud.consoleproxy.vnc.FrameBufferCanvas;
/** /**
*
* @author Kelven Yang
* *
* an instance of specialized console protocol implementation, such as VNC or RDP * an instance of specialized console protocol implementation, such as VNC or RDP
* *

View File

@ -18,7 +18,6 @@ package com.cloud.consoleproxy;
/** /**
* *
* @author Kelven Yang
* Data object to store parameter info needed by client to connect to its host * Data object to store parameter info needed by client to connect to its host
*/ */
public class ConsoleProxyClientParam { public class ConsoleProxyClientParam {

View File

@ -26,7 +26,6 @@ import com.google.gson.GsonBuilder;
/** /**
* *
* @author Kelven Yang
* ConsoleProxyClientStatsCollector collects client stats for console proxy agent to report * ConsoleProxyClientStatsCollector collects client stats for console proxy agent to report
*/ */
public class ConsoleProxyClientStatsCollector { public class ConsoleProxyClientStatsCollector {

View File

@ -24,7 +24,6 @@ import org.apache.log4j.Logger;
/** /**
* *
* @author Kelven Yang
* ConsoleProxyGCThread does house-keeping work for the process, it helps cleanup log files, * ConsoleProxyGCThread does house-keeping work for the process, it helps cleanup log files,
* recycle idle client sessions without front-end activities and report client stats to external * recycle idle client sessions without front-end activities and report client stats to external
* management software * management software

View File

@ -33,7 +33,6 @@ import com.google.gson.GsonBuilder;
/** /**
* *
* @author Kelven Yang
* A simple password based encyrptor based on DES. It can serialize simple POJO object into URL safe string * A simple password based encyrptor based on DES. It can serialize simple POJO object into URL safe string
* and deserialize it back. * and deserialize it back.
* *

View File

@ -28,7 +28,6 @@ import com.cloud.consoleproxy.vnc.VncClient;
/** /**
* *
* @author Kelven Yang
* ConsoleProxyVncClient bridges a VNC engine with the front-end AJAX viewer * ConsoleProxyVncClient bridges a VNC engine with the front-end AJAX viewer
* *
*/ */