mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 05:07:41 +00:00
GUACAMOLE-1218: Remove old @author mentions from guacamole-auth-json JavaDoc.
This commit is contained in:
@@ -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 {
|
||||
|
||||
|
@@ -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[]> {
|
||||
|
||||
|
@@ -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 {
|
||||
|
||||
|
@@ -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 {
|
||||
|
||||
|
@@ -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 {
|
||||
|
||||
|
@@ -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 {
|
||||
|
||||
|
@@ -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 {
|
||||
|
||||
|
@@ -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>> {
|
||||
|
||||
|
@@ -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 {
|
||||
|
@@ -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 {
|
||||
|
||||
|
@@ -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 {
|
||||
|
||||
|
@@ -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 {
|
||||
|
||||
|
@@ -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 {
|
||||
|
||||
|
@@ -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 {
|
||||
|
||||
|
@@ -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 {
|
||||
|
Reference in New Issue
Block a user