GUACAMOLE-204: Remove @author tags from Java source files.

This commit is contained in:
Nick Couchman
2017-02-28 08:01:26 -05:00
committed by Nick Couchman
parent 3e323f7e8a
commit c5321dde71
8 changed files with 0 additions and 16 deletions

View File

@@ -38,8 +38,6 @@ import org.apache.guacamole.auth.cas.user.AuthenticatedUser;
/**
* Service providing convenience functions for the CAS AuthenticationProvider
* implementation.
*
* @author Nick Couchman
*/
public class AuthenticationProviderService {

View File

@@ -32,8 +32,6 @@ import org.apache.guacamole.net.auth.UserContext;
* arbitrary external system implementing CAS. No storage for connections is
* provided - only authentication. Storage must be provided by some other
* extension.
*
* @author Nick Couchman
*/
public class CASAuthenticationProvider implements AuthenticationProvider {

View File

@@ -29,8 +29,6 @@ import org.apache.guacamole.auth.cas.ticket.TicketValidationService;
/**
* Guice module which configures CAS-specific injections.
*
* @author Nick Couchman
*/
public class CASAuthenticationProviderModule extends AbstractModule {

View File

@@ -25,8 +25,6 @@ import org.apache.guacamole.properties.StringGuacamoleProperty;
* Provides properties required for use of the CAS authentication provider.
* These properties will be read from guacamole.properties when the CAS
* authentication provider is used.
*
* @author Nick Couchman
*/
public class CASGuacamoleProperties {

View File

@@ -25,8 +25,6 @@ import org.apache.guacamole.environment.Environment;
/**
* Service for retrieving configuration information regarding the CAS service.
*
* @author Nick Couchman
*/
public class ConfigurationService {

View File

@@ -30,8 +30,6 @@ import org.apache.guacamole.form.Field;
* Field definition which represents the ticket returned by an CAS service.
* Within the user interface, this will be rendered as an appropriate "Log in
* with ..." button which links to the CAS service.
*
* @author Nick Couchman
*/
public class CASTicketField extends Field {

View File

@@ -32,8 +32,6 @@ import org.jasig.cas.client.validation.TicketValidationException;
/**
* Service for validating ID tickets forwarded to us by the client, verifying
* that they did indeed come from the CAS service.
*
* @author Nick Couchman
*/
public class TicketValidationService {

View File

@@ -28,8 +28,6 @@ import org.apache.guacamole.net.auth.Credentials;
* An CAS-specific implementation of AuthenticatedUser, associating a
* username and particular set of credentials with the CAS authentication
* provider.
*
* @author Nick Couchman
*/
public class AuthenticatedUser extends AbstractAuthenticatedUser {