GUACAMOLE-1218: Remove old @author mentions from guacamole-auth-json JavaDoc.

This commit is contained in:
Michael Jumper
2020-11-20 13:58:29 -08:00
parent b4fd356180
commit 2a0f063a3b
15 changed files with 0 additions and 32 deletions

View File

@@ -32,8 +32,6 @@ import org.apache.guacamole.net.auth.credentials.GuacamoleInvalidCredentialsExce
/** /**
* Service providing convenience functions for the JSONAuthenticationProvider. * Service providing convenience functions for the JSONAuthenticationProvider.
*
* @author Michael Jumper
*/ */
public class AuthenticationProviderService { public class AuthenticationProviderService {

View File

@@ -28,8 +28,6 @@ import org.apache.guacamole.properties.GuacamoleProperty;
* A GuacamoleProperty whose value is a byte array. The bytes of the byte array * A GuacamoleProperty whose value is a byte array. The bytes of the byte array
* must be represented as a hexadecimal string within the property value. The * must be represented as a hexadecimal string within the property value. The
* hexadecimal string is case-insensitive. * hexadecimal string is case-insensitive.
*
* @author Michael Jumper
*/ */
public abstract class ByteArrayProperty implements GuacamoleProperty<byte[]> { public abstract class ByteArrayProperty implements GuacamoleProperty<byte[]> {

View File

@@ -28,8 +28,6 @@ import org.apache.guacamole.environment.Environment;
/** /**
* Service for retrieving configuration information regarding the JSON * Service for retrieving configuration information regarding the JSON
* authentication provider. * authentication provider.
*
* @author Michael Jumper
*/ */
public class ConfigurationService { public class ConfigurationService {

View File

@@ -37,8 +37,6 @@ import org.apache.guacamole.GuacamoleServerException;
/** /**
* Service for handling cryptography-related operations, such as decrypting * Service for handling cryptography-related operations, such as decrypting
* encrypted data. * encrypted data.
*
* @author Michael Jumper
*/ */
public class CryptoService { public class CryptoService {

View File

@@ -33,8 +33,6 @@ import org.apache.guacamole.net.auth.UserContext;
* associated with those connections are all determined by the contents of the * associated with those connections are all determined by the contents of the
* provided JSON. The JSON itself is authorized by virtue of being properly * provided JSON. The JSON itself is authorized by virtue of being properly
* encrypted with a shared key. * encrypted with a shared key.
*
* @author Michael Jumper
*/ */
public class JSONAuthenticationProvider extends AbstractAuthenticationProvider { public class JSONAuthenticationProvider extends AbstractAuthenticationProvider {

View File

@@ -30,8 +30,6 @@ import org.apache.guacamole.net.auth.AuthenticationProvider;
/** /**
* Guice module which configures injections specific to the JSON authentication * Guice module which configures injections specific to the JSON authentication
* provider. * provider.
*
* @author Michael Jumper
*/ */
public class JSONAuthenticationProviderModule extends AbstractModule { public class JSONAuthenticationProviderModule extends AbstractModule {

View File

@@ -30,8 +30,6 @@ import org.springframework.security.web.util.matcher.IpAddressMatcher;
/** /**
* Service for testing the validity of received HTTP requests. * Service for testing the validity of received HTTP requests.
*
* @author Michael Jumper
*/ */
public class RequestValidationService { public class RequestValidationService {

View File

@@ -32,8 +32,6 @@ import org.apache.guacamole.properties.GuacamoleProperty;
* compatibility with the behavior of Java properties in general, only * compatibility with the behavior of Java properties in general, only
* whitespace at the beginning of each value is ignored; trailing whitespace * whitespace at the beginning of each value is ignored; trailing whitespace
* becomes part of the value. * becomes part of the value.
*
* @author Michael Jumper
*/ */
public abstract class StringListProperty implements GuacamoleProperty<List<String>> { public abstract class StringListProperty implements GuacamoleProperty<List<String>> {

View File

@@ -49,8 +49,6 @@ import org.slf4j.LoggerFactory;
/** /**
* Service which provides a centralized means of establishing connections, * Service which provides a centralized means of establishing connections,
* tracking/joining active connections, and retrieving associated data. * tracking/joining active connections, and retrieving associated data.
*
* @author Michael Jumper
*/ */
@Singleton @Singleton
public class ConnectionService { public class ConnectionService {

View File

@@ -28,8 +28,6 @@ import org.apache.guacamole.net.auth.Credentials;
* An implementation of AuthenticatedUser specific to the * An implementation of AuthenticatedUser specific to the
* JSONAuthenticationProvider, providing access to the decrypted contents of * JSONAuthenticationProvider, providing access to the decrypted contents of
* the JSON provided during authentication. * the JSON provided during authentication.
*
* @author Michael Jumper
*/ */
public class AuthenticatedUser extends AbstractAuthenticatedUser { public class AuthenticatedUser extends AbstractAuthenticatedUser {

View File

@@ -30,8 +30,6 @@ import org.apache.guacamole.net.auth.User;
* An implementation of UserContext specific to the JSONAuthenticationProvider * An implementation of UserContext specific to the JSONAuthenticationProvider
* which obtains all data from the encrypted JSON provided during * which obtains all data from the encrypted JSON provided during
* authentication. * authentication.
*
* @author Michael Jumper
*/ */
public class UserContext extends AbstractUserContext { public class UserContext extends AbstractUserContext {

View File

@@ -29,8 +29,6 @@ import org.codehaus.jackson.annotate.JsonProperty;
/** /**
* All data associated with a particular user, as parsed from the JSON supplied * All data associated with a particular user, as parsed from the JSON supplied
* within the encrypted blob provided during authentication. * within the encrypted blob provided during authentication.
*
* @author Michael Jumper
*/ */
public class UserData { public class UserData {
@@ -62,8 +60,6 @@ public class UserData {
/** /**
* The data associated with a Guacamole connection stored within a UserData * The data associated with a Guacamole connection stored within a UserData
* object. * object.
*
* @author Michael Jumper
*/ */
public static class Connection { public static class Connection {

View File

@@ -32,8 +32,6 @@ import org.slf4j.LoggerFactory;
* cryptographic signatures. UserData objects stored within this blacklist MUST * cryptographic signatures. UserData objects stored within this blacklist MUST
* have an associated expiration timestamp, and will automatically be removed * have an associated expiration timestamp, and will automatically be removed
* from the blacklist once they have expired. * from the blacklist once they have expired.
*
* @author Michael Jumper
*/ */
public class UserDataBlacklist { public class UserDataBlacklist {

View File

@@ -39,8 +39,6 @@ import org.apache.guacamole.protocol.GuacamoleConfiguration;
* the connection is used. Connections which are marked as single-use will * the connection is used. Connections which are marked as single-use will
* be removed from the given UserData such that only the first connection * be removed from the given UserData such that only the first connection
* attempt can succeed. * attempt can succeed.
*
* @author Michael Jumper
*/ */
public class UserDataConnection implements Connection { public class UserDataConnection implements Connection {

View File

@@ -49,8 +49,6 @@ import org.slf4j.LoggerFactory;
/** /**
* Service for deriving Guacamole extension API data from UserData objects. * Service for deriving Guacamole extension API data from UserData objects.
*
* @author Michael Jumper
*/ */
@Singleton @Singleton
public class UserDataService { public class UserDataService {