[java-identity-provider] branch main updated: Checkstyle.
Scott Cantor
cantor.2 at osu.edu
Wed Aug 28 14:22:33 UTC 2024
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch main
in repository java-identity-provider.
View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=8f96a69f69770a0cedaaaf4f5d017aed651861f8
The following commit(s) were added to refs/heads/main by this push:
new 8f96a69f6 Checkstyle.
8f96a69f6 is described below
commit 8f96a69f69770a0cedaaaf4f5d017aed651861f8
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