[java-idp-testbed] branch main updated: NonNullSupplier -> NonnullSupplier
Rod Widdowson
rdw at steadingsoftware.com
Sat Nov 26 15:37:38 UTC 2022
This is an automated email from the git hooks/post-receive script.
rdw pushed a commit to branch main
in repository java-idp-testbed.
View the commit online:
http://git.shibboleth.net/view/?p=java-idp-testbed.git;a=commit;h=b9ce0792c94c4e46e0875935f2945fe86341230a
The following commit(s) were added to refs/heads/main by this push:
new b9ce079 NonNullSupplier -> NonnullSupplier
b9ce079 is described below
commit b9ce0792c94c4e46e0875935f2945fe86341230a
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Sat Nov 26 15:36:45 2022 +0000
NonNullSupplier -> NonnullSupplier
---
src/main/java/sp/BaseSAMLController.java | 4 ++--
src/main/java/sp/SAML2Controller.java | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/main/java/sp/BaseSAMLController.java b/src/main/java/sp/BaseSAMLController.java
index 573d0f0..626874f 100644
--- a/src/main/java/sp/BaseSAMLController.java
+++ b/src/main/java/sp/BaseSAMLController.java
@@ -36,7 +36,7 @@ import org.springframework.context.ApplicationContext;
import jakarta.servlet.http.HttpServletRequest;
import net.shibboleth.shared.component.ComponentInitializationException;
-import net.shibboleth.shared.primitive.NonNullSupplier;
+import net.shibboleth.shared.primitive.NonnullSupplier;
import net.shibboleth.shared.security.IdentifierGenerationStrategy;
import net.shibboleth.shared.security.IdentifierGenerationStrategy.ProviderType;
import net.shibboleth.shared.xml.ParserPool;
@@ -62,7 +62,7 @@ public abstract class BaseSAMLController {
@Autowired protected ApplicationContext applicationContext;
private void setRequest(final BaseHttpServletRequestXMLMessageDecoder decoder, final HttpServletRequest servletRequest) {
- decoder.setHttpServletRequestSupplier(new NonNullSupplier<>() {
+ decoder.setHttpServletRequestSupplier(new NonnullSupplier<>() {
public HttpServletRequest get() {
return servletRequest;
}
diff --git a/src/main/java/sp/SAML2Controller.java b/src/main/java/sp/SAML2Controller.java
index 91a5a09..eb91269 100644
--- a/src/main/java/sp/SAML2Controller.java
+++ b/src/main/java/sp/SAML2Controller.java
@@ -94,7 +94,7 @@ import jakarta.servlet.http.HttpServletResponse;
import net.shibboleth.shared.annotation.constraint.NotEmpty;
import net.shibboleth.shared.component.ComponentInitializationException;
import net.shibboleth.shared.net.URLBuilder;
-import net.shibboleth.shared.primitive.NonNullSupplier;
+import net.shibboleth.shared.primitive.NonnullSupplier;
import net.shibboleth.shared.primitive.StringSupport;
import net.shibboleth.shared.security.IdentifierGenerationStrategy;
import net.shibboleth.shared.security.IdentifierGenerationStrategy.ProviderType;
@@ -398,7 +398,7 @@ public class SAML2Controller extends BaseSAMLController {
}
private void setupResponse(final AbstractHttpServletResponseMessageEncoder encoder, final HttpServletResponse response) {
- encoder.setHttpServletResponseSupplier(new NonNullSupplier<>() {
+ encoder.setHttpServletResponseSupplier(new NonnullSupplier<>() {
public HttpServletResponse get() {
return response;
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list