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.slf4j.LoggerFactory;
/**
* Service providing convenience functions for the LDAP AuthenticationProvider
* implementation.
*
* @author Michael Jumper
*/
public class AuthenticationProviderService {

View File

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

View File

@@ -22,8 +22,6 @@ package org.apache.guacamole.auth.ldap;
/**
* All possible encryption methods which may be used when connecting to an LDAP
* server.
*
* @author Michael Jumper
*/
public enum EncryptionMethod {

View File

@@ -28,8 +28,6 @@ import org.apache.guacamole.properties.GuacamoleProperty;
* "none", "ssl", and "starttls" are each parsed to their corresponding values
* within the EncryptionMethod enum. All other string values result in parse
* errors.
*
* @author Michael Jumper
*/
public abstract class EncryptionMethodProperty implements GuacamoleProperty<EncryptionMethod> {

View File

@@ -21,8 +21,6 @@ package org.apache.guacamole.auth.ldap;
/**
* Service for escaping LDAP filters, distinguished names (DN's), etc.
*
* @author Michael Jumper
*/
public class EscapingService {

View File

@@ -32,8 +32,6 @@ import org.apache.guacamole.net.auth.UserContext;
* Allows users to be authenticated against an LDAP server. Each user may have
* any number of authorized configurations. Authorized configurations may be
* shared.
*
* @author Michael Jumper
*/
public class LDAPAuthenticationProvider implements AuthenticationProvider {

View File

@@ -29,8 +29,6 @@ import org.apache.guacamole.net.auth.AuthenticationProvider;
/**
* Guice module which configures LDAP-specific injections.
*
* @author Michael Jumper
*/
public class LDAPAuthenticationProviderModule extends AbstractModule {

View File

@@ -32,8 +32,6 @@ import org.slf4j.LoggerFactory;
/**
* Service for creating and managing connections to LDAP servers.
*
* @author Michael Jumper
*/
public class LDAPConnectionService {

View File

@@ -27,8 +27,6 @@ import org.apache.guacamole.properties.StringGuacamoleProperty;
* Provides properties required for use of the LDAP authentication provider.
* These properties will be read from guacamole.properties when the LDAP
* authentication provider is used.
*
* @author Michael Jumper
*/
public class LDAPGuacamoleProperties {

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

@@ -46,8 +46,6 @@ import org.slf4j.LoggerFactory;
/**
* Service for querying the connections available to a particular Guacamole
* user according to an LDAP directory.
*
* @author Michael Jumper
*/
public class ConnectionService {

View File

@@ -27,8 +27,6 @@ import org.apache.guacamole.net.auth.Credentials;
/**
* An LDAP-specific implementation of AuthenticatedUser, associating a
* particular set of credentials with the LDAP authentication provider.
*
* @author Michael Jumper
*/
public class AuthenticatedUser extends AbstractAuthenticatedUser {

View File

@@ -47,8 +47,6 @@ import org.slf4j.LoggerFactory;
/**
* An LDAP-specific implementation of UserContext which queries all Guacamole
* connections and users from the LDAP directory.
*
* @author Michael Jumper
*/
public class UserContext implements org.apache.guacamole.net.auth.UserContext {

View File

@@ -43,8 +43,6 @@ import org.slf4j.LoggerFactory;
/**
* Service for queries the users visible to a particular Guacamole user
* according to an LDAP directory.
*
* @author Michael Jumper
*/
public class UserService {