[java-identity-provider] 10/23: Checkstyle.

Scott Cantor cantor.2 at osu.edu
Mon Mar 17 15:03:49 UTC 2025


This is an automated email from the git hooks/post-receive script.

scantor pushed a commit to branch maint-5.1
in repository java-identity-provider.

View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=6a9e4fe132c24f02f81aa8b6625babd609408c83

commit 6a9e4fe132c24f02f81aa8b6625babd609408c83
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Wed Aug 28 10:22:30 2024 -0400

    Checkstyle.
---
 .../saml2/profile/impl/ProcessAssertionsForAuthentication.java    | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/saml2/profile/impl/ProcessAssertionsForAuthentication.java b/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/saml2/profile/impl/ProcessAssertionsForAuthentication.java
index a476b13a8..1f05a1f48 100644
--- a/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/saml2/profile/impl/ProcessAssertionsForAuthentication.java
+++ b/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/saml2/profile/impl/ProcessAssertionsForAuthentication.java
@@ -244,7 +244,7 @@ public class ProcessAssertionsForAuthentication extends AbstractAuthenticationAc
      * The default response resolver function. NOTE: this is relative to the nested profile request context.
      * Need to compose with other lookup function against the main/outer profile request context.
      */
-    private class DefaultResponseResolver implements Function<ProfileRequestContext, Response> {
+    private final class DefaultResponseResolver implements Function<ProfileRequestContext, Response> {
 
         /** {@inheritDoc} */
         @Nullable public Response apply(@Nullable final ProfileRequestContext profileContext) {
@@ -263,7 +263,7 @@ public class ProcessAssertionsForAuthentication extends AbstractAuthenticationAc
     /**
      * Predicate for valid assertions.
      */
-    private class AssertionIsValid implements Predicate<Assertion> {
+    private final class AssertionIsValid implements Predicate<Assertion> {
 
         /** {@inheritDoc} */
         public boolean test(@Nullable final Assertion assertion) {
@@ -285,7 +285,7 @@ public class ProcessAssertionsForAuthentication extends AbstractAuthenticationAc
     /**
      * Predicate for assertions containing at least 1 AuthenticationStatement.
      */
-    private class AssertionContainsAuthenticationStatement implements Predicate<Assertion> {
+    private final class AssertionContainsAuthenticationStatement implements Predicate<Assertion> {
 
         /** {@inheritDoc} */
         public boolean test(@Nullable final Assertion assertion) {
@@ -301,7 +301,7 @@ public class ProcessAssertionsForAuthentication extends AbstractAuthenticationAc
     /**
      * Predicate for assertions which have been validated and have a confirmed Subject.
      */
-    private class AssertionContainsConfirmedSubject implements Predicate<Assertion> {
+    private final class AssertionContainsConfirmedSubject implements Predicate<Assertion> {
 
         /** {@inheritDoc} */
         @SuppressWarnings("unused")

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list