Przeglądaj źródła

Add whitespace after copyright header

Add an additional lines after the copyright header and before the
`package` declaration. This aligns with the style used by Spring
Framework.

Issue gh-8945
Phillip Webb 5 lat temu
rodzic
commit
ff94944313
100 zmienionych plików z 100 dodań i 0 usunięć
  1. 1 0
      acl/src/main/java/org/springframework/security/acls/AclEntryVoter.java
  2. 1 0
      acl/src/main/java/org/springframework/security/acls/AclPermissionCacheOptimizer.java
  3. 1 0
      acl/src/main/java/org/springframework/security/acls/AclPermissionEvaluator.java
  4. 1 0
      acl/src/main/java/org/springframework/security/acls/afterinvocation/AclEntryAfterInvocationCollectionFilteringProvider.java
  5. 1 0
      acl/src/main/java/org/springframework/security/acls/afterinvocation/AclEntryAfterInvocationProvider.java
  6. 1 0
      acl/src/main/java/org/springframework/security/acls/afterinvocation/package-info.java
  7. 1 0
      acl/src/main/java/org/springframework/security/acls/domain/AbstractPermission.java
  8. 1 0
      acl/src/main/java/org/springframework/security/acls/domain/AccessControlEntryImpl.java
  9. 1 0
      acl/src/main/java/org/springframework/security/acls/domain/AclFormattingUtils.java
  10. 1 0
      acl/src/main/java/org/springframework/security/acls/domain/AclImpl.java
  11. 1 0
      acl/src/main/java/org/springframework/security/acls/domain/AuditLogger.java
  12. 1 0
      acl/src/main/java/org/springframework/security/acls/domain/BasePermission.java
  13. 1 0
      acl/src/main/java/org/springframework/security/acls/domain/ConsoleAuditLogger.java
  14. 1 0
      acl/src/main/java/org/springframework/security/acls/domain/CumulativePermission.java
  15. 1 0
      acl/src/main/java/org/springframework/security/acls/domain/DefaultPermissionFactory.java
  16. 1 0
      acl/src/main/java/org/springframework/security/acls/domain/DefaultPermissionGrantingStrategy.java
  17. 1 0
      acl/src/main/java/org/springframework/security/acls/domain/EhCacheBasedAclCache.java
  18. 1 0
      acl/src/main/java/org/springframework/security/acls/domain/GrantedAuthoritySid.java
  19. 1 0
      acl/src/main/java/org/springframework/security/acls/domain/IdentityUnavailableException.java
  20. 1 0
      acl/src/main/java/org/springframework/security/acls/domain/ObjectIdentityImpl.java
  21. 1 0
      acl/src/main/java/org/springframework/security/acls/domain/PermissionFactory.java
  22. 1 0
      acl/src/main/java/org/springframework/security/acls/domain/PrincipalSid.java
  23. 1 0
      acl/src/main/java/org/springframework/security/acls/domain/SpringCacheBasedAclCache.java
  24. 1 0
      acl/src/main/java/org/springframework/security/acls/domain/package-info.java
  25. 1 0
      acl/src/main/java/org/springframework/security/acls/jdbc/AclClassIdUtils.java
  26. 1 0
      acl/src/main/java/org/springframework/security/acls/jdbc/BasicLookupStrategy.java
  27. 1 0
      acl/src/main/java/org/springframework/security/acls/jdbc/JdbcAclService.java
  28. 1 0
      acl/src/main/java/org/springframework/security/acls/jdbc/JdbcMutableAclService.java
  29. 1 0
      acl/src/main/java/org/springframework/security/acls/jdbc/LookupStrategy.java
  30. 1 0
      acl/src/main/java/org/springframework/security/acls/jdbc/package-info.java
  31. 1 0
      acl/src/main/java/org/springframework/security/acls/model/AccessControlEntry.java
  32. 1 0
      acl/src/main/java/org/springframework/security/acls/model/Acl.java
  33. 1 0
      acl/src/main/java/org/springframework/security/acls/model/AclCache.java
  34. 1 0
      acl/src/main/java/org/springframework/security/acls/model/AclDataAccessException.java
  35. 1 0
      acl/src/main/java/org/springframework/security/acls/model/AclService.java
  36. 1 0
      acl/src/main/java/org/springframework/security/acls/model/AlreadyExistsException.java
  37. 1 0
      acl/src/main/java/org/springframework/security/acls/model/AuditableAccessControlEntry.java
  38. 1 0
      acl/src/main/java/org/springframework/security/acls/model/AuditableAcl.java
  39. 1 0
      acl/src/main/java/org/springframework/security/acls/model/ChildrenExistException.java
  40. 1 0
      acl/src/main/java/org/springframework/security/acls/model/MutableAcl.java
  41. 1 0
      acl/src/main/java/org/springframework/security/acls/model/MutableAclService.java
  42. 1 0
      acl/src/main/java/org/springframework/security/acls/model/NotFoundException.java
  43. 1 0
      acl/src/main/java/org/springframework/security/acls/model/ObjectIdentity.java
  44. 1 0
      acl/src/main/java/org/springframework/security/acls/model/ObjectIdentityGenerator.java
  45. 1 0
      acl/src/main/java/org/springframework/security/acls/model/OwnershipAcl.java
  46. 1 0
      acl/src/main/java/org/springframework/security/acls/model/Permission.java
  47. 1 0
      acl/src/main/java/org/springframework/security/acls/model/PermissionGrantingStrategy.java
  48. 1 0
      acl/src/main/java/org/springframework/security/acls/model/Sid.java
  49. 1 0
      acl/src/main/java/org/springframework/security/acls/model/UnloadedSidException.java
  50. 1 0
      acl/src/main/java/org/springframework/security/acls/model/package-info.java
  51. 1 0
      acl/src/main/java/org/springframework/security/acls/package-info.java
  52. 1 0
      acl/src/test/java/org/springframework/security/acls/AclFormattingUtilsTests.java
  53. 1 0
      acl/src/test/java/org/springframework/security/acls/AclPermissionCacheOptimizerTests.java
  54. 1 0
      acl/src/test/java/org/springframework/security/acls/AclPermissionEvaluatorTests.java
  55. 1 0
      acl/src/test/java/org/springframework/security/acls/TargetObject.java
  56. 1 0
      acl/src/test/java/org/springframework/security/acls/TargetObjectWithUUID.java
  57. 1 0
      acl/src/test/java/org/springframework/security/acls/afterinvocation/AclEntryAfterInvocationCollectionFilteringProviderTests.java
  58. 1 0
      acl/src/test/java/org/springframework/security/acls/afterinvocation/AclEntryAfterInvocationProviderTests.java
  59. 1 0
      acl/src/test/java/org/springframework/security/acls/domain/AccessControlImplEntryTests.java
  60. 1 0
      acl/src/test/java/org/springframework/security/acls/domain/AclAuthorizationStrategyImplTests.java
  61. 1 0
      acl/src/test/java/org/springframework/security/acls/domain/AclImplTests.java
  62. 1 0
      acl/src/test/java/org/springframework/security/acls/domain/AclImplementationSecurityCheckTests.java
  63. 1 0
      acl/src/test/java/org/springframework/security/acls/domain/AuditLoggerTests.java
  64. 1 0
      acl/src/test/java/org/springframework/security/acls/domain/ObjectIdentityImplTests.java
  65. 1 0
      acl/src/test/java/org/springframework/security/acls/domain/ObjectIdentityRetrievalStrategyImplTests.java
  66. 1 0
      acl/src/test/java/org/springframework/security/acls/domain/PermissionTests.java
  67. 1 0
      acl/src/test/java/org/springframework/security/acls/domain/SpecialPermission.java
  68. 1 0
      acl/src/test/java/org/springframework/security/acls/jdbc/AbstractBasicLookupStrategyTests.java
  69. 1 0
      acl/src/test/java/org/springframework/security/acls/jdbc/AclClassIdUtilsTests.java
  70. 1 0
      acl/src/test/java/org/springframework/security/acls/jdbc/BasicLookupStrategyTests.java
  71. 1 0
      acl/src/test/java/org/springframework/security/acls/jdbc/BasicLookupStrategyTestsDbHelper.java
  72. 1 0
      acl/src/test/java/org/springframework/security/acls/jdbc/BasicLookupStrategyWithAclClassTypeTests.java
  73. 1 0
      acl/src/test/java/org/springframework/security/acls/jdbc/DatabaseSeeder.java
  74. 1 0
      acl/src/test/java/org/springframework/security/acls/jdbc/EhCacheBasedAclCacheTests.java
  75. 1 0
      acl/src/test/java/org/springframework/security/acls/jdbc/JdbcAclServiceTests.java
  76. 1 0
      acl/src/test/java/org/springframework/security/acls/jdbc/JdbcMutableAclServiceTests.java
  77. 1 0
      acl/src/test/java/org/springframework/security/acls/jdbc/JdbcMutableAclServiceTestsWithAclClassId.java
  78. 1 0
      acl/src/test/java/org/springframework/security/acls/jdbc/SpringCacheBasedAclCacheTests.java
  79. 1 0
      acl/src/test/java/org/springframework/security/acls/sid/CustomSid.java
  80. 1 0
      acl/src/test/java/org/springframework/security/acls/sid/SidRetrievalStrategyTests.java
  81. 1 0
      acl/src/test/java/org/springframework/security/acls/sid/SidTests.java
  82. 1 0
      aspects/src/test/java/org/springframework/security/access/intercept/aspectj/aspect/AnnotationSecurityAspectTests.java
  83. 1 0
      cas/src/main/java/org/springframework/security/cas/SamlServiceProperties.java
  84. 1 0
      cas/src/main/java/org/springframework/security/cas/authentication/CasAssertionAuthenticationToken.java
  85. 1 0
      cas/src/main/java/org/springframework/security/cas/authentication/NullStatelessTicketCache.java
  86. 1 0
      cas/src/main/java/org/springframework/security/cas/authentication/SpringCacheBasedTicketCache.java
  87. 1 0
      cas/src/main/java/org/springframework/security/cas/authentication/package-info.java
  88. 1 0
      cas/src/main/java/org/springframework/security/cas/package-info.java
  89. 1 0
      cas/src/main/java/org/springframework/security/cas/userdetails/AbstractCasAssertionUserDetailsService.java
  90. 1 0
      cas/src/main/java/org/springframework/security/cas/userdetails/GrantedAuthorityFromAssertionAttributesUserDetailsService.java
  91. 1 0
      cas/src/main/java/org/springframework/security/cas/web/authentication/DefaultServiceAuthenticationDetails.java
  92. 1 0
      cas/src/main/java/org/springframework/security/cas/web/authentication/ServiceAuthenticationDetails.java
  93. 1 0
      cas/src/main/java/org/springframework/security/cas/web/authentication/ServiceAuthenticationDetailsSource.java
  94. 1 0
      cas/src/main/java/org/springframework/security/cas/web/authentication/package-info.java
  95. 1 0
      cas/src/main/java/org/springframework/security/cas/web/package-info.java
  96. 1 0
      cas/src/test/java/org/springframework/security/cas/authentication/AbstractStatelessTicketCacheTests.java
  97. 1 0
      cas/src/test/java/org/springframework/security/cas/authentication/NullStatelessTicketCacheTests.java
  98. 1 0
      cas/src/test/java/org/springframework/security/cas/userdetails/GrantedAuthorityFromAssertionAttributesUserDetailsServiceTests.java
  99. 1 0
      cas/src/test/java/org/springframework/security/cas/web/authentication/DefaultServiceAuthenticationDetailsTests.java
  100. 1 0
      config/src/integration-test/java/org/springframework/security/config/annotation/authentication/ldap/NamespaceLdapAuthenticationProviderTestsConfigs.java

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/AclEntryVoter.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls;
 
 import java.lang.reflect.InvocationTargetException;

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/AclPermissionCacheOptimizer.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls;
 
 import java.util.ArrayList;

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/AclPermissionEvaluator.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls;
 
 import java.io.Serializable;

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/afterinvocation/AclEntryAfterInvocationCollectionFilteringProvider.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.afterinvocation;
 
 import java.util.Collection;

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/afterinvocation/AclEntryAfterInvocationProvider.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.afterinvocation;
 
 import java.util.Collection;

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/afterinvocation/package-info.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 /**
  * After-invocation providers for collection and array filtering. Consider using a
  * {@code PostFilter} annotation in preference.

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/domain/AbstractPermission.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.domain;
 
 import org.springframework.security.acls.model.Permission;

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/domain/AccessControlEntryImpl.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.domain;
 
 import java.io.Serializable;

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/domain/AclFormattingUtils.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.domain;
 
 import org.springframework.security.acls.model.Permission;

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/domain/AclImpl.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.domain;
 
 import java.io.Serializable;

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/domain/AuditLogger.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.domain;
 
 import org.springframework.security.acls.model.AccessControlEntry;

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/domain/BasePermission.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.domain;
 
 import org.springframework.security.acls.model.Permission;

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/domain/ConsoleAuditLogger.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.domain;
 
 import org.springframework.security.acls.model.AccessControlEntry;

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/domain/CumulativePermission.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.domain;
 
 import org.springframework.security.acls.model.Permission;

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/domain/DefaultPermissionFactory.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.domain;
 
 import java.lang.reflect.Field;

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/domain/DefaultPermissionGrantingStrategy.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.domain;
 
 import java.util.List;

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/domain/EhCacheBasedAclCache.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.domain;
 
 import java.io.Serializable;

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/domain/GrantedAuthoritySid.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.domain;
 
 import org.springframework.security.acls.model.Sid;

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/domain/IdentityUnavailableException.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.domain;
 
 /**

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/domain/ObjectIdentityImpl.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.domain;
 
 import java.io.Serializable;

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/domain/PermissionFactory.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.domain;
 
 import java.util.List;

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/domain/PrincipalSid.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.domain;
 
 import org.springframework.security.acls.model.Sid;

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/domain/SpringCacheBasedAclCache.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.domain;
 
 import java.io.Serializable;

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/domain/package-info.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 /**
  * Basic implementation of access control lists (ACLs) interfaces.
  */

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/jdbc/AclClassIdUtils.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.jdbc;
 
 import java.io.Serializable;

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/jdbc/BasicLookupStrategy.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.jdbc;
 
 import java.io.Serializable;

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/jdbc/JdbcAclService.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.jdbc;
 
 import java.io.Serializable;

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/jdbc/JdbcMutableAclService.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.jdbc;
 
 import java.sql.PreparedStatement;

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/jdbc/LookupStrategy.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.jdbc;
 
 import java.util.List;

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/jdbc/package-info.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 /**
  * JDBC-based persistence of ACL information
  */

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/model/AccessControlEntry.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.model;
 
 import java.io.Serializable;

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/model/Acl.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.model;
 
 import java.io.Serializable;

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/model/AclCache.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.model;
 
 import java.io.Serializable;

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/model/AclDataAccessException.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.model;
 
 /**

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/model/AclService.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.model;
 
 import java.util.List;

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/model/AlreadyExistsException.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.model;
 
 /**

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/model/AuditableAccessControlEntry.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.model;
 
 /**

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/model/AuditableAcl.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.model;
 
 /**

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/model/ChildrenExistException.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.model;
 
 /**

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/model/MutableAcl.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.model;
 
 import java.io.Serializable;

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/model/MutableAclService.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.model;
 
 /**

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/model/NotFoundException.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.model;
 
 /**

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/model/ObjectIdentity.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.model;
 
 import java.io.Serializable;

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/model/ObjectIdentityGenerator.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.model;
 
 import java.io.Serializable;

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/model/OwnershipAcl.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.model;
 
 /**

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/model/Permission.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.model;
 
 import java.io.Serializable;

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/model/PermissionGrantingStrategy.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.model;
 
 import java.util.List;

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/model/Sid.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.model;
 
 import java.io.Serializable;

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/model/UnloadedSidException.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.model;
 
 /**

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/model/package-info.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 /**
  * Interfaces and shared classes to manage access control lists (ACLs) for domain object
  * instances.

+ 1 - 0
acl/src/main/java/org/springframework/security/acls/package-info.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 /**
  * The Spring Security ACL package which implements instance-based security for domain
  * objects.

+ 1 - 0
acl/src/test/java/org/springframework/security/acls/AclFormattingUtilsTests.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls;
 
 import org.junit.Test;

+ 1 - 0
acl/src/test/java/org/springframework/security/acls/AclPermissionCacheOptimizerTests.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls;
 
 import java.util.Arrays;

+ 1 - 0
acl/src/test/java/org/springframework/security/acls/AclPermissionEvaluatorTests.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls;
 
 import java.util.Locale;

+ 1 - 0
acl/src/test/java/org/springframework/security/acls/TargetObject.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls;
 
 /**

+ 1 - 0
acl/src/test/java/org/springframework/security/acls/TargetObjectWithUUID.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls;
 
 import java.util.UUID;

+ 1 - 0
acl/src/test/java/org/springframework/security/acls/afterinvocation/AclEntryAfterInvocationCollectionFilteringProviderTests.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.afterinvocation;
 
 import java.util.ArrayList;

+ 1 - 0
acl/src/test/java/org/springframework/security/acls/afterinvocation/AclEntryAfterInvocationProviderTests.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.afterinvocation;
 
 import java.util.Arrays;

+ 1 - 0
acl/src/test/java/org/springframework/security/acls/domain/AccessControlImplEntryTests.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.domain;
 
 import org.junit.Test;

+ 1 - 0
acl/src/test/java/org/springframework/security/acls/domain/AclAuthorizationStrategyImplTests.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.domain;
 
 import java.util.Arrays;

+ 1 - 0
acl/src/test/java/org/springframework/security/acls/domain/AclImplTests.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.domain;
 
 import java.lang.reflect.Field;

+ 1 - 0
acl/src/test/java/org/springframework/security/acls/domain/AclImplementationSecurityCheckTests.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.domain;
 
 import org.junit.After;

+ 1 - 0
acl/src/test/java/org/springframework/security/acls/domain/AuditLoggerTests.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.domain;
 
 import java.io.ByteArrayOutputStream;

+ 1 - 0
acl/src/test/java/org/springframework/security/acls/domain/ObjectIdentityImplTests.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.domain;
 
 import org.junit.Test;

+ 1 - 0
acl/src/test/java/org/springframework/security/acls/domain/ObjectIdentityRetrievalStrategyImplTests.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.domain;
 
 import org.junit.Test;

+ 1 - 0
acl/src/test/java/org/springframework/security/acls/domain/PermissionTests.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.domain;
 
 import org.junit.Before;

+ 1 - 0
acl/src/test/java/org/springframework/security/acls/domain/SpecialPermission.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.domain;
 
 import org.springframework.security.acls.model.Permission;

+ 1 - 0
acl/src/test/java/org/springframework/security/acls/jdbc/AbstractBasicLookupStrategyTests.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.jdbc;
 
 import java.util.Arrays;

+ 1 - 0
acl/src/test/java/org/springframework/security/acls/jdbc/AclClassIdUtilsTests.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.jdbc;
 
 import java.io.Serializable;

+ 1 - 0
acl/src/test/java/org/springframework/security/acls/jdbc/BasicLookupStrategyTests.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.jdbc;
 
 import javax.sql.DataSource;

+ 1 - 0
acl/src/test/java/org/springframework/security/acls/jdbc/BasicLookupStrategyTestsDbHelper.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.jdbc;
 
 import org.springframework.core.io.ClassPathResource;

+ 1 - 0
acl/src/test/java/org/springframework/security/acls/jdbc/BasicLookupStrategyWithAclClassTypeTests.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.jdbc;
 
 import java.util.Arrays;

+ 1 - 0
acl/src/test/java/org/springframework/security/acls/jdbc/DatabaseSeeder.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.jdbc;
 
 import java.io.IOException;

+ 1 - 0
acl/src/test/java/org/springframework/security/acls/jdbc/EhCacheBasedAclCacheTests.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.jdbc;
 
 import java.io.File;

+ 1 - 0
acl/src/test/java/org/springframework/security/acls/jdbc/JdbcAclServiceTests.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.jdbc;
 
 import java.util.ArrayList;

+ 1 - 0
acl/src/test/java/org/springframework/security/acls/jdbc/JdbcMutableAclServiceTests.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.jdbc;
 
 import java.util.Arrays;

+ 1 - 0
acl/src/test/java/org/springframework/security/acls/jdbc/JdbcMutableAclServiceTestsWithAclClassId.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.jdbc;
 
 import java.util.UUID;

+ 1 - 0
acl/src/test/java/org/springframework/security/acls/jdbc/SpringCacheBasedAclCacheTests.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.jdbc;
 
 import java.util.Map;

+ 1 - 0
acl/src/test/java/org/springframework/security/acls/sid/CustomSid.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.sid;
 
 import org.springframework.security.acls.model.Sid;

+ 1 - 0
acl/src/test/java/org/springframework/security/acls/sid/SidRetrievalStrategyTests.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.sid;
 
 import java.util.List;

+ 1 - 0
acl/src/test/java/org/springframework/security/acls/sid/SidTests.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.acls.sid;
 
 import java.util.Collection;

+ 1 - 0
aspects/src/test/java/org/springframework/security/access/intercept/aspectj/aspect/AnnotationSecurityAspectTests.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.access.intercept.aspectj.aspect;
 
 import java.util.ArrayList;

+ 1 - 0
cas/src/main/java/org/springframework/security/cas/SamlServiceProperties.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.cas;
 
 /**

+ 1 - 0
cas/src/main/java/org/springframework/security/cas/authentication/CasAssertionAuthenticationToken.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.cas.authentication;
 
 import java.util.ArrayList;

+ 1 - 0
cas/src/main/java/org/springframework/security/cas/authentication/NullStatelessTicketCache.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.cas.authentication;
 
 /**

+ 1 - 0
cas/src/main/java/org/springframework/security/cas/authentication/SpringCacheBasedTicketCache.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.cas.authentication;
 
 import org.apache.commons.logging.Log;

+ 1 - 0
cas/src/main/java/org/springframework/security/cas/authentication/package-info.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 /**
  * An {@code AuthenticationProvider} that can process CAS service tickets and proxy
  * tickets.

+ 1 - 0
cas/src/main/java/org/springframework/security/cas/package-info.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 /**
  * Spring Security support for Jasig's Central Authentication Service
  * (<a href="https://www.jasig.org/cas">CAS</a>).

+ 1 - 0
cas/src/main/java/org/springframework/security/cas/userdetails/AbstractCasAssertionUserDetailsService.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.cas.userdetails;
 
 import org.jasig.cas.client.validation.Assertion;

+ 1 - 0
cas/src/main/java/org/springframework/security/cas/userdetails/GrantedAuthorityFromAssertionAttributesUserDetailsService.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.cas.userdetails;
 
 import java.util.ArrayList;

+ 1 - 0
cas/src/main/java/org/springframework/security/cas/web/authentication/DefaultServiceAuthenticationDetails.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.cas.web.authentication;
 
 import java.net.MalformedURLException;

+ 1 - 0
cas/src/main/java/org/springframework/security/cas/web/authentication/ServiceAuthenticationDetails.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.cas.web.authentication;
 
 import java.io.Serializable;

+ 1 - 0
cas/src/main/java/org/springframework/security/cas/web/authentication/ServiceAuthenticationDetailsSource.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.cas.web.authentication;
 
 import java.net.MalformedURLException;

+ 1 - 0
cas/src/main/java/org/springframework/security/cas/web/authentication/package-info.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 /**
  * Authentication processing mechanisms which respond to the submission of authentication
  * credentials using CAS.

+ 1 - 0
cas/src/main/java/org/springframework/security/cas/web/package-info.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 /**
  * Authenticates standard web browser users via CAS.
  */

+ 1 - 0
cas/src/test/java/org/springframework/security/cas/authentication/AbstractStatelessTicketCacheTests.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.cas.authentication;
 
 import java.util.ArrayList;

+ 1 - 0
cas/src/test/java/org/springframework/security/cas/authentication/NullStatelessTicketCacheTests.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.cas.authentication;
 
 import org.junit.Test;

+ 1 - 0
cas/src/test/java/org/springframework/security/cas/userdetails/GrantedAuthorityFromAssertionAttributesUserDetailsServiceTests.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.cas.userdetails;
 
 import java.util.Arrays;

+ 1 - 0
cas/src/test/java/org/springframework/security/cas/web/authentication/DefaultServiceAuthenticationDetailsTests.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.cas.web.authentication;
 
 import java.util.regex.Pattern;

+ 1 - 0
config/src/integration-test/java/org/springframework/security/config/annotation/authentication/ldap/NamespaceLdapAuthenticationProviderTestsConfigs.java

@@ -13,6 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.springframework.security.config.annotation.authentication.ldap;
 
 import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;

Niektóre pliki nie zostały wyświetlone z powodu dużej ilości zmienionych plików