remove $Id$

git-svn-id: https://svn.apache.org/repos/asf/archiva/redback/redback-core/trunk@1371172 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Olivier Lamy 2012-08-09 11:48:47 +00:00
parent ce3a793d4d
commit 83d4f636d2
36 changed files with 25 additions and 37 deletions

View File

@ -28,7 +28,6 @@
* AuthenticationManager:
*
* @author: Jesse McConnell <jesse@codehaus.org>
* @version: $Id$
*/
public interface AuthenticationManager
{

View File

@ -41,7 +41,6 @@
* auth procedure followed by authentication based on a known key for 'remember me' type functionality.
*
* @author: Jesse McConnell <jesse@codehaus.org>
* @version: $Id$
*/
@Service("authenticationManager")
public class DefaultAuthenticationManager

View File

@ -23,7 +23,6 @@
* EntityAuthenticationException.java
*
* @author Dan Diephouse
* @since $Id$
*/
public class NotAuthenticatedException
extends Exception
@ -33,6 +32,7 @@ public class NotAuthenticatedException
*/
public NotAuthenticatedException()
{
// no op
}
/**

View File

@ -47,7 +47,6 @@
* LdapBindAuthenticator:
*
* @author: Jesse McConnell <jesse@codehaus.org>
* @version: $Id$
*/
@Service( "authenticator#ldap" )
public class LdapBindAuthenticator

View File

@ -30,7 +30,6 @@
* MemoryAuthenticator:
*
* @author: Jesse McConnell <jesse@codehaus.org>
* @version: $Id$
*/
@Service("authenticator#memory")
public class MemoryAuthenticator

View File

@ -35,7 +35,6 @@
* MemoryAuthenticatorTest:
*
* @author: Jesse McConnell <jesse@codehaus.org>
* @version: $Id$
*/
@RunWith( SpringJUnit4ClassRunner.class )
@ContextConfiguration( locations = { "classpath*:/META-INF/spring-context.xml", "classpath*:/spring-context.xml" } )

View File

@ -24,7 +24,6 @@
* EntityAuthenticationException.java
*
* @author: Jesse McConnell <jesse@codehaus.org>
* @version: $ID:$
*/
public class AuthorizationException
extends Exception

View File

@ -23,7 +23,6 @@
* AuthorizationResult: wrapper object for results from the authorization system
*
* @author: Jesse McConnell <jesse@codehaus.org>
* @version: $ID:$
*/
public class AuthorizationResult
{

View File

@ -23,7 +23,6 @@
* EntityAuthenticationException.java
*
* @author: Jesse McConnell <jesse@codehaus.org>
* @version: $ID:$
*/
public class NotAuthorizedException
extends Exception

View File

@ -36,7 +36,7 @@
* RequiredRolesEnvironmentCheck:
*
* @author: Jesse McConnell <jesse@codehaus.org>
* @version: $Id$
*
*/
@Service( "environmentCheck#guest-user-check" )
public class GuestUserEnvironmentCheck

View File

@ -41,7 +41,7 @@
* and unlocks them on startup.
*
* @author: Jesse McConnell <jesse@codehaus.org>
* @version: $Id$
*
*/
@Service( "environmentCheck#locked-admin-check" )
public class LockedAdminEnvironmentCheck

View File

@ -36,7 +36,7 @@
* assigned.
*
* @author: Jesse McConnell <jesse@codehaus.org>
* @version: $Id$
*
*/
@Service("environmentCheck#required-roles")
public class RequiredRolesEnvironmentCheck

View File

@ -28,7 +28,7 @@
* SecureActionBundle:
*
* @author: Jesse McConnell <jesse@codehaus.org>
* @version: $Id$
*
*/
public class SecureActionBundle
{

View File

@ -23,7 +23,7 @@
* SecureActionException:
*
* @author: Jesse McConnell <jesse@codehaus.org>
* @version: $Id$
*
*/
public class SecureActionException
extends Exception

View File

@ -25,7 +25,7 @@
* RoleConstants:
*
* @author: Jesse McConnell <jesse@codehaus.org>
* @version: $Id$
*
* @deprecated use {@link RedbackRoleConstants}
*/
public class RoleConstants

View File

@ -43,7 +43,6 @@
* KeyStoreAuthenticator:
*
* @author: Jesse McConnell <jesse@codehaus.org>
* @version: $Id$
*/
@Service( "authenticator#keystore" )
public class KeyStoreAuthenticator
@ -59,7 +58,7 @@ public class KeyStoreAuthenticator
public String getId()
{
return "$Id$";
return getClass().getName();
}
public AuthenticationResult authenticate( AuthenticationDataSource source )

View File

@ -26,7 +26,6 @@
/**
* Basic Password Rule. Checks that password only contains alpha-numeric characters.
*
* $Id$
*/
@Service("passwordRule#alpha-numeric")
public class AlphaNumericPasswordRule

View File

@ -26,7 +26,7 @@
/**
* Basic Password Rule. Checks that password does not have whitespaces in it.
*
* $Id$
*
*/
@Service("passwordRule#no-whitespaces")
public class WhitespacePasswordRule

View File

@ -27,7 +27,6 @@
/**
* @author: Jesse McConnell <jesse@codehaus.org>
* @version: $Id$
*/
@Service("authorizer#memory")
public class MemoryAuthorizer

View File

@ -57,7 +57,7 @@
* RoleProfileManager:
*
* @author: Jesse McConnell <jesse@codehaus.org>
* @version: $Id$
*
*/
@Service( "roleManager" )
public class DefaultRoleManager

View File

@ -27,7 +27,7 @@
* RoleProfileManager:
*
* @author: Jesse McConnell <jesse@codehaus.org>
* @version: $Id$
*
*/
public interface RoleManager
{

View File

@ -49,7 +49,7 @@
* DefaultRoleModelProcessor: inserts the components of the model that can be populated into the rbac manager
*
* @author: Jesse McConnell <jesse@codehaus.org>
* @version: $Id$
*
*/
@Service( "roleModelProcessor" )
public class DefaultRoleModelProcessor

View File

@ -26,7 +26,7 @@
* RoleModelValidator:
*
* @author: Jesse McConnell <jesse@codehaus.org>
* @version: $Id$
*
*/
public interface RoleModelProcessor
{

View File

@ -49,7 +49,7 @@
* DefaultRoleTemplateProcessor: inserts the components of a template into the rbac manager
*
* @author: Jesse McConnell <jesse@codehaus.org>
* @version: $Id$
*
*/
@Service( "roleTemplateProcessor" )
public class DefaultRoleTemplateProcessor

View File

@ -37,7 +37,7 @@
* RoleModelUtils:
*
* @author: Jesse McConnell <jesse@codehaus.org>
* @version: $Id$
*
*/
public class RoleModelUtils
{

View File

@ -38,7 +38,7 @@
* DefaultRoleModelValidator: validates completeness of the model
*
* @author: Jesse McConnell <jesse@codehaus.org>
* @version: $Id$
*
*/
@Service( "roleModelValidator" )
public class DefaultRoleModelValidator

View File

@ -28,7 +28,7 @@
* RoleModelValidator:
*
* @author: Jesse McConnell <jesse@codehaus.org>
* @version: $Id$
*
*/
public interface RoleModelValidator
{

View File

@ -39,7 +39,7 @@
* AbstractRoleManagerTest:
*
* @author: Jesse McConnell <jesse@codehaus.org>
* @version: $Id$
*
*/
@RunWith( SpringJUnit4ClassRunner.class )
@ContextConfiguration( locations = { "classpath*:/META-INF/spring-context.xml", "classpath*:/spring-context.xml" } )

View File

@ -43,7 +43,7 @@
* RoleProfileTest:
*
* @author: Jesse McConnell <jesse@codehaus.org>
* @version: $Id$
*
*/
@RunWith( SpringJUnit4ClassRunner.class )
@ContextConfiguration( locations = { "classpath*:/META-INF/spring-context.xml", "classpath*:/spring-context.xml" } )

View File

@ -41,7 +41,7 @@
* RoleProfileTest:
*
* @author: Jesse McConnell <jesse@codehaus.org>
* @version: $Id$
*
*/
@RunWith( SpringJUnit4ClassRunner.class )
@ContextConfiguration( locations = { "classpath*:/META-INF/spring-context.xml", "classpath*:/spring-context.xml" } )

View File

@ -36,7 +36,7 @@
* RoleModelMergerTest:
*
* @author: Jesse McConnell <jesse@codehaus.org>
* @version: $Id$
*
*/
@RunWith( SpringJUnit4ClassRunner.class )
@ContextConfiguration( locations = { "classpath*:/META-INF/spring-context.xml", "classpath*:/spring-context.xml" } )

View File

@ -45,7 +45,7 @@
* DefaultSecuritySystem:
*
* @author: Jesse McConnell <jesse@codehaus.org>
* @version: $Id$
*
*/
@Service( "securitySystem" )
public class DefaultSecuritySystem

View File

@ -34,7 +34,6 @@
* SecuritySystem:
*
* @author: Jesse McConnell <jesse@codehaus.org>
* @version: $ID:$
*
*/
public interface SecuritySystem

View File

@ -33,7 +33,7 @@
* TestAuthenticationManager:
*
* @author: Jesse McConnell <jesse@codehaus.org>
* @version: $ID:$
*
*/
@RunWith( SpringJUnit4ClassRunner.class )
@ContextConfiguration( locations = { "classpath*:/META-INF/spring-context.xml", "classpath*:/spring-context.xml" } )

View File

@ -44,7 +44,7 @@
/**
* @author <a href="jesse@codehaus.org"> jesse
* @version "$Id$"
*
*/
@Service( "userManager#ldap" )
public class LdapUserManager

View File

@ -46,7 +46,7 @@
/**
* @author <a href="jesse@codehaus.org"> jesse
* @version "$Id$"
*
*/
@Service
public class DefaultLdapController