Removing $Id$ markers and stripping trailing whitespace from the codebase.

This commit is contained in:
Luke Taylor 2010-01-08 16:06:05 +00:00
parent 9a323f15bc
commit 052537c8b0
877 changed files with 12140 additions and 12851 deletions

View File

@ -80,7 +80,6 @@ import org.springframework.util.StringUtils;
* <p>All comparisons and prefixes are case sensitive.</p>
*
* @author Ben Alex
* @version $Id$
*/
public class AclEntryVoter extends AbstractAclVoter {
//~ Static fields/initializers =====================================================================================

View File

@ -28,7 +28,6 @@ import org.springframework.security.core.Authentication;
* {@link org.springframework.security.acls.AclEntryVoter AclEntryVoter}.
*
* @author Luke Taylor
* @version $Id$
* @since 3.0
*/
public class AclPermissionEvaluator implements PermissionEvaluator {

View File

@ -39,7 +39,6 @@ import org.springframework.util.Assert;
* Abstract {@link AfterInvocationProvider} which provides commonly-used ACL-related services.
*
* @author Ben Alex
* @version $Id$
*/
public abstract class AbstractAclProvider implements AfterInvocationProvider {
//~ Instance fields ================================================================================================

View File

@ -57,7 +57,6 @@ import org.springframework.security.core.Authentication;
*
* @author Ben Alex
* @author Paulo Neves
* @version $Id$
*/
public class AclEntryAfterInvocationCollectionFilteringProvider extends AbstractAclProvider {
//~ Static fields/initializers =====================================================================================

View File

@ -30,7 +30,6 @@ import org.apache.commons.logging.LogFactory;
*
* @author Ben Alex
* @author Paulo Neves
* @version $Id$
*/
class ArrayFilterer<T> implements Filterer<T> {
//~ Static fields/initializers =====================================================================================

View File

@ -29,7 +29,6 @@ import java.util.Set;
*
* @author Ben Alex
* @author Paulo Neves
* @version $Id$
*/
class CollectionFilterer<T> implements Filterer<T> {
//~ Static fields/initializers =====================================================================================

View File

@ -23,7 +23,6 @@ import java.util.Iterator;
*
* @author Ben Alex
* @author Paulo Neves
* @version $Id$
*/
interface Filterer<T> extends Iterable<T> {
//~ Methods ========================================================================================================

View File

@ -29,7 +29,6 @@ import java.io.Serializable;
* An immutable default implementation of <code>AccessControlEntry</code>.
*
* @author Ben Alex
* @version $Id$
*/
public class AccessControlEntryImpl implements AccessControlEntry, AuditableAccessControlEntry {
//~ Instance fields ================================================================================================

View File

@ -23,7 +23,6 @@ import org.springframework.security.acls.model.Acl;
* adminstrative methods on the <code>AclImpl</code>.
*
* @author Ben Alex
* @version $Id$
*/
public interface AclAuthorizationStrategy {
//~ Static fields/initializers =====================================================================================

View File

@ -37,7 +37,6 @@ import org.springframework.util.Assert;
* {@link GrantedAuthority} and injected into the constructor.
*
* @author Ben Alex
* @version $Id$
*/
public class AclAuthorizationStrategyImpl implements AclAuthorizationStrategy {
//~ Instance fields ================================================================================================

View File

@ -22,7 +22,6 @@ import org.springframework.util.Assert;
* Utility methods for displaying ACL information.
*
* @author Ben Alex
* @version $Id$
*/
public abstract class AclFormattingUtils {

View File

@ -35,7 +35,6 @@ import org.springframework.util.Assert;
* Base implementation of <code>Acl</code>.
*
* @author Ben Alex
* @version $Id$
*/
public class AclImpl implements Acl, MutableAcl, AuditableAcl, OwnershipAcl {
//~ Instance fields ================================================================================================

View File

@ -21,7 +21,6 @@ import org.springframework.security.acls.model.AccessControlEntry;
* Used by <code>AclImpl</code> to log audit events.
*
* @author Ben Alex
* @version $Id$
*
*/
public interface AuditLogger {

View File

@ -26,7 +26,6 @@ import org.springframework.security.acls.model.Permission;
* </p>
*
* @author Ben Alex
* @version $Id$
*/
public class BasePermission extends AbstractPermission {
public static final Permission READ = new BasePermission(1 << 0, 'R'); // 1

View File

@ -24,7 +24,6 @@ import org.springframework.util.Assert;
* A basic implementation of {@link AuditLogger}.
*
* @author Ben Alex
* @version $Id$
*/
public class ConsoleAuditLogger implements AuditLogger {
//~ Methods ========================================================================================================

View File

@ -23,7 +23,6 @@ import org.springframework.security.acls.model.Permission;
* <p>Methods return <code>this</code>, in order to facilitate method chaining.</p>
*
* @author Ben Alex
* @version $Id$
*/
public class CumulativePermission extends AbstractPermission {

View File

@ -36,7 +36,6 @@ import org.springframework.util.Assert;
* </p>
*
* @author Ben Alex
* @version $Id$
*/
public class EhCacheBasedAclCache implements AclCache {
//~ Instance fields ================================================================================================

View File

@ -26,7 +26,6 @@ import org.springframework.util.Assert;
* wish to provide an alternative <code>Sid</code> implementation that uses some other identifier.</p>
*
* @author Ben Alex
* @version $Id$
*/
public class GrantedAuthoritySid implements Sid {
//~ Instance fields ================================================================================================

View File

@ -18,7 +18,6 @@ package org.springframework.security.acls.domain;
* Thrown if an ACL identity could not be extracted from an object.
*
* @author Ben Alex
* @version $Id$
*/
public class IdentityUnavailableException extends RuntimeException {
//~ Constructors ===================================================================================================

View File

@ -29,7 +29,6 @@ import org.springframework.util.ClassUtils;
* reflection to build the identity information.
*
* @author Ben Alex
* @version $Id$
*/
public class ObjectIdentityImpl implements ObjectIdentity {
//~ Instance fields ================================================================================================

View File

@ -26,7 +26,6 @@ import org.springframework.security.acls.model.ObjectIdentityRetrievalStrategy;
* that uses the constructors of {@link ObjectIdentityImpl} to create the {@link ObjectIdentity}.
*
* @author Ben Alex
* @version $Id$
*/
public class ObjectIdentityRetrievalStrategyImpl implements ObjectIdentityRetrievalStrategy, ObjectIdentityGenerator {
//~ Methods ========================================================================================================

View File

@ -28,7 +28,6 @@ import org.springframework.util.Assert;
* objects may wish to provide an alternative <code>Sid</code> implementation that uses some other identifier.</p>
*
* @author Ben Alex
* @version $Id$
*/
public class PrincipalSid implements Sid {
//~ Instance fields ================================================================================================

View File

@ -35,7 +35,6 @@ import org.springframework.util.Assert;
* The returned array will always contain the {@link PrincipalSid} before any {@link GrantedAuthoritySid} elements.
*
* @author Ben Alex
* @version $Id$
*/
public class SidRetrievalStrategyImpl implements SidRetrievalStrategy {

View File

@ -72,7 +72,6 @@ import org.springframework.util.Assert;
* generated by the the default values.
*
* @author Ben Alex
* @version $Id$
*/
public final class BasicLookupStrategy implements LookupStrategy {

View File

@ -43,7 +43,6 @@ import org.springframework.util.Assert;
* detect changed parameters easily.
*
* @author Ben Alex
* @version $Id$
*/
public class JdbcAclService implements AclService {
//~ Static fields/initializers =====================================================================================

View File

@ -56,7 +56,6 @@ import org.springframework.util.Assert;
*
* @author Ben Alex
* @author Johannes Zlattinger
* @version $Id$
*/
public class JdbcMutableAclService extends JdbcAclService implements MutableAclService {
//~ Instance fields ================================================================================================

View File

@ -27,7 +27,6 @@ import java.util.Map;
* Performs lookups for {@link org.springframework.security.acls.model.AclService}.
*
* @author Ben Alex
* @version $Id$
*/
public interface LookupStrategy {
//~ Methods ========================================================================================================

View File

@ -27,7 +27,6 @@ import java.io.Serializable;
* </p>
*
* @author Ben Alex
* @version $Id$
*
*/
public interface AccessControlEntry extends Serializable {

View File

@ -39,7 +39,6 @@ import java.util.List;
* </p>
*
* @author Ben Alex
* @version $Id$
*/
public interface Acl extends Serializable {

View File

@ -23,7 +23,6 @@ import java.io.Serializable;
* A caching layer for {@link JdbcAclService}.
*
* @author Ben Alex
* @version $Id$
*
*/
public interface AclCache {

View File

@ -4,7 +4,6 @@ package org.springframework.security.acls.model;
* Abstract base class for Acl data operations.
*
* @author Luke Taylor
* @version $Id$
* @since 3.0
*/
public abstract class AclDataAccessException extends RuntimeException {

View File

@ -23,7 +23,6 @@ import java.util.Map;
* Provides retrieval of {@link Acl} instances.
*
* @author Ben Alex
* @version $Id$
*/
public interface AclService {
//~ Methods ========================================================================================================

View File

@ -19,7 +19,6 @@ package org.springframework.security.acls.model;
* Thrown if an <code>Acl</code> entry already exists for the object.
*
* @author Ben Alex
* @version $Id$
*/
public class AlreadyExistsException extends AclDataAccessException {
//~ Constructors ===================================================================================================

View File

@ -19,7 +19,6 @@ package org.springframework.security.acls.model;
* Represents an ACE that provides auditing information.
*
* @author Ben Alex
* @version $Id$
*
*/
public interface AuditableAccessControlEntry extends AccessControlEntry {

View File

@ -19,7 +19,6 @@ package org.springframework.security.acls.model;
* A mutable ACL that provides audit capabilities.
*
* @author Ben Alex
* @version $Id$
*
*/
public interface AuditableAcl extends MutableAcl {

View File

@ -19,7 +19,6 @@ package org.springframework.security.acls.model;
* Thrown if an {@link Acl} cannot be deleted because children <code>Acl</code>s exist.
*
* @author Ben Alex
* @version $Id$
*/
public class ChildrenExistException extends AclDataAccessException {
//~ Constructors ===================================================================================================

View File

@ -25,7 +25,6 @@ import java.io.Serializable;
* before allowing access to its methods.
*
* @author Ben Alex
* @version $Id$
*/
public interface MutableAcl extends Acl {
//~ Methods ========================================================================================================

View File

@ -20,7 +20,6 @@ package org.springframework.security.acls.model;
* Provides support for creating and storing <code>Acl</code> instances.
*
* @author Ben Alex
* @version $Id$
*/
public interface MutableAclService extends AclService {
//~ Methods ========================================================================================================

View File

@ -19,7 +19,6 @@ package org.springframework.security.acls.model;
* Thrown if an ACL-related object cannot be found.
*
* @author Ben Alex
* @version $Id$
*/
public class NotFoundException extends AclDataAccessException {
//~ Constructors ===================================================================================================

View File

@ -30,7 +30,6 @@ import java.io.Serializable;
* </p>
*
* @author Ben Alex
* @version $Id$
*/
public interface ObjectIdentity extends Serializable {
//~ Methods ========================================================================================================

View File

@ -11,7 +11,6 @@ import java.io.Serializable;
* instance isn't available.
*
* @author Luke Taylor
* @version $Id$
* @since 3.0
*/
public interface ObjectIdentityGenerator {

View File

@ -21,7 +21,6 @@ package org.springframework.security.acls.model;
* will be returned for a particular domain object
*
* @author Ben Alex
* @version $Id$
*
*/
public interface ObjectIdentityRetrievalStrategy {

View File

@ -24,7 +24,6 @@ package org.springframework.security.acls.model;
* well as assign a new owner.
*
* @author Ben Alex
* @version $Id$
*/
public interface OwnershipAcl extends MutableAcl {
//~ Methods ========================================================================================================

View File

@ -20,7 +20,6 @@ import java.io.Serializable;
* Represents a permission granted to a <tt>Sid</tt> for a given domain object.
*
* @author Ben Alex
* @version $Id$
*/
public interface Permission extends Serializable {
//~ Static fields/initializers =====================================================================================

View File

@ -29,7 +29,6 @@ import java.io.Serializable;
* </p>
*
* @author Ben Alex
* @version $Id$
*/
public interface Sid extends Serializable {
//~ Methods ========================================================================================================

View File

@ -25,7 +25,6 @@ import org.springframework.security.core.Authentication;
* for an {@link Authentication}.
*
* @author Ben Alex
* @version $Id$
*/
public interface SidRetrievalStrategy {
//~ Methods ========================================================================================================

View File

@ -20,7 +20,6 @@ package org.springframework.security.acls.model;
* the caller has requested details for an unloaded <code>Sid</code>.
*
* @author Ben Alex
* @version $Id$
*/
public class UnloadedSidException extends AclDataAccessException {
//~ Constructors ===================================================================================================

View File

@ -15,7 +15,6 @@ import org.springframework.security.core.Authentication;
/**
*
* @author Luke Taylor
* @version $Id$
* @since 3.0
*/
public class AclPermissionEvaluatorTests {

View File

@ -4,7 +4,6 @@ package org.springframework.security.acls;
* Dummy domain object class
*
* @author Luke Taylor
* @version $Id$
*/
public final class TargetObject {

View File

@ -16,7 +16,6 @@ import org.springframework.security.acls.model.Sid;
* Tests for {@link AccessControlEntryImpl}.
*
* @author Andrei Stefan
* @version $Id$
*/
public class AccessControlImplEntryTests {
Mockery jmock = new JUnit4Mockery();

View File

@ -18,7 +18,6 @@ import org.springframework.security.acls.model.AuditableAccessControlEntry;
* Test class for {@link ConsoleAuditLogger}.
*
* @author Andrei Stefan
* @version $Id$
*/
public class AuditLoggerTests {
//~ Instance fields ================================================================================================

View File

@ -25,7 +25,6 @@ import org.springframework.security.acls.model.Permission;
* Tests classes associated with Permission.
*
* @author Ben Alex
* @version $Id$
*/
public class PermissionTests {

View File

@ -21,7 +21,6 @@ import org.springframework.security.acls.model.Permission;
* A test permission.
*
* @author Ben Alex
* @version $Id$
*/
public class SpecialPermission extends BasePermission {
public static final Permission ENTER = new SpecialPermission(1 << 5, 'E'); // 32

View File

@ -30,7 +30,6 @@ import javax.sql.DataSource;
* Seeds the database for {@link JdbcMutableAclServiceTests}.
*
* @author Ben Alex
* @version $Id$
*/
public class DatabaseSeeder {
//~ Constructors ===================================================================================================

View File

@ -37,7 +37,6 @@ import org.springframework.security.util.FieldUtils;
* Tests {@link EhCacheBasedAclCache}
*
* @author Andrei Stefan
* @version $Id$
*/
public class EhCacheBasedAclCacheTests {
private static final String TARGET_CLASS = "org.springframework.security.acls.TargetObject";

View File

@ -57,7 +57,6 @@ import org.springframework.transaction.annotation.Transactional;
*
* @author Ben Alex
* @author Andrei Stefan
* @version $Id:JdbcMutableAclServiceTests.java 1754 2006-11-17 02:01:21Z benalex $
*/
@ContextConfiguration(locations={"/jdbcMutableAclServiceTests-context.xml"})
public class JdbcMutableAclServiceTests extends AbstractTransactionalJUnit4SpringContextTests {

View File

@ -6,7 +6,6 @@
-
- Used by all artifacts.
-
- $Id:applicationContext-test.xml 1754 2006-11-17 02:01:21Z benalex $
-->
<beans>

View File

@ -18,7 +18,6 @@ package org.springframework.security.cas;
* Sets the appropriate parameters for CAS's implementation of SAML (which is not guaranteed to be actually SAML compliant).
*
* @author Scott Battaglia
* @version $Revision$ $Date$
* @since 3.0
*/
public final class SamlServiceProperties extends ServiceProperties {

View File

@ -27,7 +27,6 @@ import org.springframework.util.Assert;
* that is being secured by Spring Security.
*
* @author Ben Alex
* @version $Id$
*/
public class ServiceProperties implements InitializingBean {

View File

@ -24,7 +24,6 @@ import org.springframework.security.core.GrantedAuthority;
* Temporary authentication object needed to load the user details service.
*
* @author Scott Battaglia
* @version $Id$
* @since 3.0
*/
public final class CasAssertionAuthenticationToken extends AbstractAuthenticationToken {

View File

@ -46,7 +46,6 @@ import org.springframework.util.Assert;
*
* @author Ben Alex
* @author Scott Battaglia
* @version $Id$
*/
public class CasAuthenticationProvider implements AuthenticationProvider, InitializingBean, MessageSourceAware {

View File

@ -28,7 +28,6 @@ import org.springframework.security.core.userdetails.UserDetails;
*
* @author Ben Alex
* @author Scott Battaglia
* @version $Id$
*/
public class CasAuthenticationToken extends AbstractAuthenticationToken implements Serializable {
//~ Instance fields ================================================================================================

View File

@ -34,7 +34,6 @@ import org.springframework.util.Assert;
* Caches tickets using a Spring IoC defined <A HREF="http://ehcache.sourceforge.net">EHCACHE</a>.
*
* @author Ben Alex
* @version $Id$
*/
public class EhCacheBasedTicketCache implements StatelessTicketCache, InitializingBean {
//~ Static fields/initializers =====================================================================================

View File

@ -24,7 +24,6 @@ package org.springframework.security.cas.authentication;
* the stateless session management.
*
* @author Scott Battaglia
* @version $Id$
*
*@see CasAuthenticationProvider
*/

View File

@ -57,7 +57,6 @@ package org.springframework.security.cas.authentication;
* </p>
*
* @author Ben Alex
* @version $Id$
*/
public interface StatelessTicketCache {
//~ Methods ================================================================

View File

@ -27,7 +27,6 @@ import org.jasig.cas.client.validation.Assertion;
* useful when combined with a SAML-based response from the CAS Server/client.
*
* @author Scott Battaglia
* @version $Revision$ $Date$
* @since 3.0
*/
public abstract class AbstractCasAssertionUserDetailsService implements AuthenticationUserDetailsService {

View File

@ -30,7 +30,6 @@ import java.util.ArrayList;
* value then its not added.
*
* @author Scott Battaglia
* @version $Revision$ $Date$
* @since 3.0
*/
public final class GrantedAuthorityFromAssertionAttributesUserDetailsService extends AbstractCasAssertionUserDetailsService {

View File

@ -41,7 +41,6 @@ import org.springframework.util.Assert;
*
* @author Ben Alex
* @author Scott Battaglia
* @version $Id$
*/
public class CasAuthenticationEntryPoint implements AuthenticationEntryPoint, InitializingBean {
//~ Instance fields ================================================================================================

View File

@ -54,7 +54,6 @@ import org.springframework.security.web.authentication.AbstractAuthenticationPro
* By default this filter processes the URL <tt>/j_spring_cas_security_check</tt>.
*
* @author Ben Alex
* @version $Id$
*/
public class CasAuthenticationFilter extends AbstractAuthenticationProcessingFilter {
//~ Static fields/initializers =====================================================================================

View File

@ -12,7 +12,6 @@ import org.springframework.security.core.userdetails.User;
/**
*
* @author Scott Battaglia
* @version $Id$
* @since 2.0
*
*/

View File

@ -46,7 +46,6 @@ import org.springframework.security.core.userdetails.UsernameNotFoundException;
*
* @author Ben Alex
* @author Scott Battaglia
* @version $Id$
*/
public class CasAuthenticationProviderTests {
//~ Methods ========================================================================================================

View File

@ -32,7 +32,6 @@ import org.springframework.security.core.userdetails.UserDetails;
* Tests {@link CasAuthenticationToken}.
*
* @author Ben Alex
* @version $Id$
*/
public class CasAuthenticationTokenTests extends TestCase {
private final List<GrantedAuthority> ROLES = AuthorityUtils.createAuthorityList("ROLE_ONE","ROLE_TWO");

View File

@ -32,7 +32,6 @@ import static org.junit.Assert.*;
* Tests {@link EhCacheBasedTicketCache}.
*
* @author Ben Alex
* @version $Id$
*/
public class EhCacheBasedTicketCacheTests extends AbstractStatelessTicketCacheTests {
private static CacheManager cacheManager;

View File

@ -26,7 +26,6 @@ import static org.junit.Assert.*;
* Test cases for the @link {@link NullStatelessTicketCache}
*
* @author Scott Battaglia
* @version $Id$
*
*/
public class NullStatelessTicketCacheTests extends AbstractStatelessTicketCacheTests {

View File

@ -29,7 +29,6 @@ import java.net.URLEncoder;
* Tests {@link CasAuthenticationEntryPoint}.
*
* @author Ben Alex
* @version $Id$
*/
public class CasAuthenticationEntryPointTests extends TestCase {
//~ Methods ========================================================================================================

View File

@ -30,7 +30,6 @@ import org.springframework.security.core.AuthenticationException;
* Tests {@link CasAuthenticationFilter}.
*
* @author Ben Alex
* @version $Id$
*/
public class CasAuthenticationFilterTests {
//~ Methods ========================================================================================================

View File

@ -24,7 +24,6 @@ import junit.framework.TestCase;
* Tests {@link ServiceProperties}.
*
* @author Ben Alex
* @version $Id$
*/
public class ServicePropertiesTests extends TestCase {
//~ Methods ========================================================================================================

View File

@ -6,7 +6,6 @@ package org.springframework.security.config;
* These are intended for internal use.
*
* @author Ben Alex
* @version $Id: BeanIds.java 3770 2009-07-15 23:09:47Z ltaylor $
*/
public abstract class BeanIds {
private static final String PREFIX = "org.springframework.security.";

View File

@ -4,7 +4,6 @@ package org.springframework.security.config;
* Contains all the element names used by Spring Security 2 namespace support.
*
* @author Ben Alex
* @version $Id: Elements.java 3697 2009-06-08 12:59:13Z ltaylor $
*/
public abstract class Elements {

View File

@ -31,7 +31,6 @@ import org.w3c.dom.Node;
* @author Luke Taylor
* @author Ben Alex
* @since 2.0
* @version $Id$
*/
public final class SecurityNamespaceHandler implements NamespaceHandler {
private final Map<String, BeanDefinitionParser> parsers = new HashMap<String, BeanDefinitionParser>();

View File

@ -17,7 +17,6 @@ import org.w3c.dom.Element;
/**
* @author Luke Taylor
* @version $Id$
*/
public abstract class AbstractUserDetailsServiceBeanDefinitionParser implements BeanDefinitionParser {
static final String CACHE_REF = "cache-ref";

View File

@ -31,7 +31,6 @@ import org.w3c.dom.NodeList;
* coming from.
*
* @author Luke Taylor
* @version $Id$
*/
public class AuthenticationManagerBeanDefinitionParser implements BeanDefinitionParser {
private static final String ATT_ALIAS = "alias";

View File

@ -15,7 +15,6 @@ import org.springframework.security.config.BeanIds;
* the &lt;authentication-manager&gt; element.
*
* @author Luke Taylor
* @version $Id$
* @since 3.0
*/
public class AuthenticationManagerFactoryBean implements FactoryBean<AuthenticationManager>, BeanFactoryAware {

View File

@ -17,7 +17,6 @@ import org.w3c.dom.Element;
* ProviderManager.
*
* @author Luke Taylor
* @version $Id$
*/
public class AuthenticationProviderBeanDefinitionParser implements BeanDefinitionParser {
private static String ATT_USER_DETAILS_REF = "user-service-ref";

View File

@ -9,7 +9,6 @@ import org.w3c.dom.Element;
/**
* @author Luke Taylor
* @version $Id$
*/
public class JdbcUserServiceBeanDefinitionParser extends AbstractUserDetailsServiceBeanDefinitionParser {
static final String ATT_DATA_SOURCE = "data-source-ref";

View File

@ -29,7 +29,6 @@ import org.w3c.dom.Element;
* Will produce a PasswordEncoder and (optionally) a SaltSource.
*
* @author Luke Taylor
* @version $Id$
*/
public class PasswordEncoderParser {
static final String ATT_REF = "ref";

View File

@ -13,7 +13,6 @@ import org.w3c.dom.Element;
/**
* @author Luke Taylor
* @version $Id$
* @since 2.0
*/
class SaltSourceBeanDefinitionParser {

View File

@ -44,7 +44,6 @@ import org.w3c.dom.Element;
* Handles creation of authentication mechanism filters and related beans for &lt;http&gt; parsing.
*
* @author Luke Taylor
* @version $Id$
* @since 3.0
*/
final class AuthenticationConfigBuilder {

View File

@ -11,7 +11,6 @@ import org.springframework.security.web.access.channel.ChannelDecisionManagerImp
* Used as a factory bean to create config attribute values for the <tt>requires-channel</tt> attribute.
*
* @author Luke Taylor
* @version $Id$
* @since 3.0
*/
public class ChannelAttributeFactory {

View File

@ -20,7 +20,6 @@ import java.util.*;
* Sets the filter chain Map for a FilterChainProxy bean declaration.
*
* @author Luke Taylor
* @version $Id$
*/
public class FilterChainMapBeanDefinitionDecorator implements BeanDefinitionDecorator {

View File

@ -28,7 +28,6 @@ import org.w3c.dom.Element;
* Allows for convenient creation of a {@link FilterInvocationSecurityMetadataSource} bean for use with a FilterSecurityInterceptor.
*
* @author Luke Taylor
* @version $Id$
*/
public class FilterInvocationSecurityMetadataSourceParser implements BeanDefinitionParser {
private static final String ATT_USE_EXPRESSIONS = "use-expressions";

View File

@ -17,7 +17,6 @@ import org.w3c.dom.Element;
/**
* @author Luke Taylor
* @author Ben Alex
* @version $Id$
*/
public class FormLoginBeanDefinitionParser {
protected final Log logger = LogFactory.getLog(getClass());

View File

@ -53,7 +53,6 @@ import org.w3c.dom.Element;
* Stateful class which helps HttpSecurityBDP to create the configuration for the &lt;http&gt; element.
*
* @author Luke Taylor
* @version $Id$
* @since 3.0
*/
class HttpConfigurationBuilder {

View File

@ -42,7 +42,6 @@ import org.w3c.dom.Element;
* @author Luke Taylor
* @author Ben Alex
* @since 2.0
* @version $Id$
*/
public class HttpSecurityBeanDefinitionParser implements BeanDefinitionParser {
private static final Log logger = LogFactory.getLog(HttpSecurityBeanDefinitionParser.class);

View File

@ -14,7 +14,6 @@ import org.w3c.dom.Element;
/**
* @author Luke Taylor
* @author Ben Alex
* @version $Id$
*/
class LogoutBeanDefinitionParser implements BeanDefinitionParser {
static final String ATT_LOGOUT_SUCCESS_URL = "logout-success-url";

View File

@ -19,7 +19,6 @@ import org.w3c.dom.Element;
* bean.
*
* @author Luke Taylor
* @version $Id$
*/
class PortMappingsBeanDefinitionParser implements BeanDefinitionParser {
public static final String ATT_HTTP_PORT = "http";

View File

@ -20,7 +20,6 @@ import org.w3c.dom.Element;
/**
* @author Luke Taylor
* @author Ben Alex
* @version $Id$
*/
class RememberMeBeanDefinitionParser implements BeanDefinitionParser {
static final String ATT_DATA_SOURCE = "data-source-ref";

View File

@ -5,7 +5,6 @@ package org.springframework.security.config.http;
* Stores the default order numbers of all Spring Security filters for use in configuration.
*
* @author Luke Taylor
* @version $Id$
*/
enum SecurityFilters {

View File

@ -9,7 +9,6 @@ import org.springframework.util.StringUtils;
*
* @author Luke Taylor
* @author Ben Alex
* @version $Id$
*/
abstract class WebConfigUtils {

View File

@ -16,7 +16,6 @@ import org.springframework.util.ClassUtils;
* the server-ref attribute to link this to the other ldap definitions. See SEC-799.
*
* @author Luke Taylor
* @version $Id$
* @since 3.0
*/
class ContextSourceSettingPostProcessor implements BeanFactoryPostProcessor, Ordered {

Some files were not shown because too many files have changed in this diff Show More