GUACAMOLE-224: Remove @author tags from codebase.

This commit is contained in:
Michael Jumper
2017-02-27 23:17:42 -08:00
parent fa07460390
commit dec73c8457
412 changed files with 18 additions and 832 deletions

View File

@@ -36,8 +36,6 @@ import org.apache.guacamole.net.GuacamoleSocket;
* a specific configuration while disallowing the client that will be using
* this GuacamoleSocket from manually controlling the initial protocol
* handshake.
*
* @author Michael Jumper
*/
public class ConfiguredGuacamoleSocket implements GuacamoleSocket {

View File

@@ -26,8 +26,6 @@ import org.apache.guacamole.io.GuacamoleReader;
* GuacamoleReader which applies a given GuacamoleFilter to observe or alter all
* read instructions. Instructions may also be dropped or denied by the the
* filter.
*
* @author Michael Jumper
*/
public class FilteredGuacamoleReader implements GuacamoleReader {

View File

@@ -27,8 +27,6 @@ import org.apache.guacamole.net.GuacamoleSocket;
/**
* Implementation of GuacamoleSocket which allows individual instructions to be
* intercepted, overridden, etc.
*
* @author Michael Jumper
*/
public class FilteredGuacamoleSocket implements GuacamoleSocket {

View File

@@ -27,8 +27,6 @@ import org.apache.guacamole.io.GuacamoleWriter;
* GuacamoleWriter which applies a given GuacamoleFilter to observe or alter
* all written instructions. Instructions may also be dropped or denied by
* the filter.
*
* @author Michael Jumper
*/
public class FilteredGuacamoleWriter implements GuacamoleWriter {

View File

@@ -26,8 +26,6 @@ import java.util.List;
/**
* An abstract representation of Guacamole client information, including all
* information required by the Guacamole protocol during the preamble.
*
* @author Michael Jumper
*/
public class GuacamoleClientInformation {

View File

@@ -29,8 +29,6 @@ import java.util.Set;
/**
* All information necessary to complete the initial protocol handshake of a
* Guacamole session.
*
* @author Michael Jumper
*/
public class GuacamoleConfiguration implements Serializable {

View File

@@ -25,8 +25,6 @@ import org.apache.guacamole.GuacamoleException;
* Interface which provides for the filtering of individual instructions. Each
* filtered instruction may be allowed through untouched, modified, replaced,
* dropped, or explicitly denied.
*
* @author Michael Jumper
*/
public interface GuacamoleFilter {

View File

@@ -27,8 +27,6 @@ import java.util.List;
/**
* An abstract representation of a Guacamole instruction, as defined by the
* Guacamole protocol.
*
* @author Michael Jumper
*/
public class GuacamoleInstruction {

View File

@@ -29,8 +29,6 @@ import org.apache.guacamole.GuacamoleServerException;
* Parser for the Guacamole protocol. Arbitrary instruction data is appended,
* and instructions are returned as a result. Invalid instructions result in
* exceptions.
*
* @author Michael Jumper
*/
public class GuacamoleParser implements Iterator<GuacamoleInstruction> {

View File

@@ -22,8 +22,6 @@ package org.apache.guacamole.protocol;
/**
* All possible statuses returned by various Guacamole instructions, each having
* a corresponding code.
*
* @author Michael Jumper
*/
public enum GuacamoleStatus {