2020-07-24 11:37:53 -07:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<!DOCTYPE suppressions PUBLIC
|
|
|
|
"-//Checkstyle//DTD SuppressionFilter Configuration 1.2//EN"
|
|
|
|
"https://checkstyle.org/dtds/suppressions_1_2.dtd">
|
|
|
|
<suppressions>
|
2020-07-27 10:01:32 -07:00
|
|
|
<suppress files=".*" checks="JavadocMethod" />
|
|
|
|
<suppress files=".*" checks="JavadocStyle" />
|
|
|
|
<suppress files=".*" checks="JavadocTagContinuationIndentation" />
|
|
|
|
<suppress files=".*" checks="JavadocType" />
|
|
|
|
<suppress files=".*" checks="JavadocVariable" />
|
2020-07-27 11:10:07 -07:00
|
|
|
<suppress files=".*" checks="NonEmptyAtclauseDescription" />
|
2020-07-29 18:18:00 -07:00
|
|
|
<suppress files=".*" checks="SpringJavadoc" />
|
2020-07-24 13:35:18 -07:00
|
|
|
|
|
|
|
<!-- Ignore third-party code -->
|
|
|
|
<suppress files="BCrypt\.java|BCryptTests\.java" checks=".*"/>
|
|
|
|
<suppress files="org[\\/]springframework[\\/]security[\\/]core[\\/]ComparableVersion\.java" checks=".*"/>
|
2020-07-26 22:23:37 -07:00
|
|
|
|
|
|
|
<!-- InterfaceIsType rules we can't fix until a major revision due to back compatibility -->
|
|
|
|
<suppress files="JwsAlgorithms\.java" checks="InterfaceIsType"/>
|
|
|
|
<suppress files="JwtClaimNames\.java" checks="InterfaceIsType"/>
|
|
|
|
<suppress files="OAuth2ErrorCodes\.java" checks="InterfaceIsType"/>
|
|
|
|
<suppress files="OAuth2ParameterNames\.java" checks="InterfaceIsType"/>
|
|
|
|
<suppress files="PkceParameterNames\.java" checks="InterfaceIsType"/>
|
|
|
|
<suppress files="IdTokenClaimNames\.java" checks="InterfaceIsType"/>
|
|
|
|
<suppress files="OidcScopes\.java" checks="InterfaceIsType"/>
|
|
|
|
<suppress files="StandardClaimNames\.java" checks="InterfaceIsType"/>
|
|
|
|
<suppress files="OidcParameterNames\.java" checks="InterfaceIsType"/>
|
|
|
|
<suppress files="BearerTokenErrorCodes\.java" checks="InterfaceIsType"/>
|
|
|
|
<suppress files="OAuth2IntrospectionClaimNames\.java" checks="InterfaceIsType"/>
|
2021-06-12 01:33:00 +02:00
|
|
|
<suppress files="OAuth2TokenIntrospectionClaimNames\.java" checks="InterfaceIsType"/>
|
2020-07-26 22:23:37 -07:00
|
|
|
<suppress files="Saml2ErrorCodes\.java" checks="InterfaceIsType"/>
|
2021-09-14 17:40:12 -06:00
|
|
|
<suppress files="Saml2ParameterNames\.java" checks="InterfaceIsType"/>
|
2020-07-29 22:05:08 -07:00
|
|
|
|
|
|
|
<!-- Method Visibility that we can't reduce -->
|
|
|
|
<suppress files="AbstractAclVoterTests\.java" checks="SpringMethodVisibility"/>
|
|
|
|
<suppress files="AbstractSecurityWebSocketMessageBrokerConfigurerTests\.java" checks="SpringMethodVisibility"/>
|
|
|
|
<suppress files="AnnotationParameterNameDiscovererTests\.java" checks="SpringMethodVisibility"/>
|
|
|
|
<suppress files="AnnotationSecurityAspectTests\.java" checks="SpringMethodVisibility"/>
|
|
|
|
<suppress files="AuthenticationPrincipalArgumentResolverTests\.java" checks="SpringMethodVisibility"/>
|
|
|
|
<suppress files="ELRequestMatcherContext\.java" checks="SpringMethodVisibility"/>
|
|
|
|
<suppress files="EnableWebFluxSecurityTests\.java" checks="SpringMethodVisibility"/>
|
|
|
|
<suppress files="ExpressionBasedPreInvocationAdviceTests\.java" checks="SpringMethodVisibility"/>
|
|
|
|
<suppress files="ExpressionUrlAuthorizationConfigurerTests\.java" checks="SpringMethodVisibility"/>
|
|
|
|
<suppress files="Jsr250MethodSecurityMetadataSourceTests\.java" checks="SpringMethodVisibility"/>
|
|
|
|
<suppress files="MapBasedMethodSecurityMetadataSourceTests\.java" checks="SpringMethodVisibility"/>
|
|
|
|
<suppress files="OAuth2ResourceServerBeanDefinitionParserTests\.java" checks="SpringMethodVisibility"/>
|
|
|
|
<suppress files="ObjectIdentityImplTests\.java" checks="SpringMethodVisibility"/>
|
|
|
|
<suppress files="ObjectIdentityRetrievalStrategyImplTests\.java" checks="SpringMethodVisibility"/>
|
|
|
|
<suppress files="ProtectPointcutPostProcessor\.java" checks="SpringMethodVisibility"/>
|
|
|
|
<suppress files="ReactiveMethodSecurityConfigurationTests" checks="SpringMethodVisibility"/>
|
|
|
|
<suppress files="WebSocketMessageBrokerConfigTests\.java" checks="SpringMethodVisibility"/>
|
|
|
|
<suppress files="WebSecurityConfigurationTests\.java" checks="SpringMethodVisibility"/>
|
|
|
|
<suppress files="WithSecurityContextTestExecutionListenerTests\.java" checks="SpringMethodVisibility"/>
|
2020-11-16 19:56:45 -05:00
|
|
|
<suppress files="AbstractOAuth2AuthorizationGrantRequestEntityConverter\.java" checks="SpringMethodVisibility"/>
|
2020-11-16 19:56:45 -05:00
|
|
|
<suppress files="JoseHeader\.java" checks="SpringMethodVisibility"/>
|
2020-07-24 11:37:53 -07:00
|
|
|
</suppressions>
|