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.
*
* @author Michael Jumper
*/
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
* must be represented as a hexadecimal string within the property value. The
* hexadecimal string is case-insensitive.
*
* @author Michael Jumper
*/
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
* authentication provider.
*
* @author Michael Jumper
*/
public class ConfigurationService {

View File

@@ -37,8 +37,6 @@ import org.apache.guacamole.GuacamoleServerException;
/**
* Service for handling cryptography-related operations, such as decrypting
* encrypted data.
*
* @author Michael Jumper
*/
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
* provided JSON. The JSON itself is authorized by virtue of being properly
* encrypted with a shared key.
*
* @author Michael Jumper
*/
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
* provider.
*
* @author Michael Jumper
*/
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.
*
* @author Michael Jumper
*/
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
* whitespace at the beginning of each value is ignored; trailing whitespace
* becomes part of the value.
*
* @author Michael Jumper
*/
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,
* tracking/joining active connections, and retrieving associated data.
*
* @author Michael Jumper
*/
@Singleton
public class ConnectionService {

View File

@@ -28,8 +28,6 @@ import org.apache.guacamole.net.auth.Credentials;
* An implementation of AuthenticatedUser specific to the
* JSONAuthenticationProvider, providing access to the decrypted contents of
* the JSON provided during authentication.
*
* @author Michael Jumper
*/
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
* which obtains all data from the encrypted JSON provided during
* authentication.
*
* @author Michael Jumper
*/
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
* within the encrypted blob provided during authentication.
*
* @author Michael Jumper
*/
public class UserData {
@@ -62,8 +60,6 @@ public class UserData {
/**
* The data associated with a Guacamole connection stored within a UserData
* object.
*
* @author Michael Jumper
*/
public static class Connection {

View File

@@ -32,8 +32,6 @@ import org.slf4j.LoggerFactory;
* cryptographic signatures. UserData objects stored within this blacklist MUST
* have an associated expiration timestamp, and will automatically be removed
* from the blacklist once they have expired.
*
* @author Michael Jumper
*/
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
* be removed from the given UserData such that only the first connection
* attempt can succeed.
*
* @author Michael Jumper
*/
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.
*
* @author Michael Jumper
*/
@Singleton
public class UserDataService {