[java-opensaml] branch main updated: Fix build

Rod Widdowson rdw at steadingsoftware.com
Fri Aug 12 17:34:14 UTC 2022


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

rdw pushed a commit to branch main
in repository java-opensaml.

View the commit online:
http://git.shibboleth.net/view/?p=java-opensaml.git;a=commit;h=780dcf8b8d9299c1f9dd84bb1856aa56a2cf7ebe

The following commit(s) were added to refs/heads/main by this push:
     new 780dcf8b8 Fix build
780dcf8b8 is described below

commit 780dcf8b8d9299c1f9dd84bb1856aa56a2cf7ebe
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Fri Aug 12 18:27:05 2022 +0100

    Fix build
---
 .../saml/saml2/profile/impl/AddSubjectConfirmationToSubjectsTest.java | 4 ++--
 .../org/opensaml/saml/saml2/profile/impl/ValidateAssertionsTest.java  | 2 +-
 .../opensaml/storage/impl/client/LoadClientStorageServicesTest.java   | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/opensaml-saml-impl/src/test/java/org/opensaml/saml/saml2/profile/impl/AddSubjectConfirmationToSubjectsTest.java b/opensaml-saml-impl/src/test/java/org/opensaml/saml/saml2/profile/impl/AddSubjectConfirmationToSubjectsTest.java
index d9b1be826..85bebaa68 100644
--- a/opensaml-saml-impl/src/test/java/org/opensaml/saml/saml2/profile/impl/AddSubjectConfirmationToSubjectsTest.java
+++ b/opensaml-saml-impl/src/test/java/org/opensaml/saml/saml2/profile/impl/AddSubjectConfirmationToSubjectsTest.java
@@ -22,7 +22,7 @@ import net.shibboleth.utilities.java.support.logic.FunctionSupport;
 
 import java.util.function.Supplier;
 
-import javax.servlet.http.HttpServletRequest;
+import jakarta.servlet.http.HttpServletRequest;
 
 import org.opensaml.core.testing.OpenSAMLInitBaseTestCase;
 import org.opensaml.profile.action.EventIds;
@@ -145,4 +145,4 @@ public class AddSubjectConfirmationToSubjectsTest extends OpenSAMLInitBaseTestCa
         response.setInResponseTo(((AuthnRequest) prc.getInboundMessageContext().getMessage()).getID());
     }
     
-}
\ No newline at end of file
+}
diff --git a/opensaml-saml-impl/src/test/java/org/opensaml/saml/saml2/profile/impl/ValidateAssertionsTest.java b/opensaml-saml-impl/src/test/java/org/opensaml/saml/saml2/profile/impl/ValidateAssertionsTest.java
index 29bcd7980..9ff38706a 100644
--- a/opensaml-saml-impl/src/test/java/org/opensaml/saml/saml2/profile/impl/ValidateAssertionsTest.java
+++ b/opensaml-saml-impl/src/test/java/org/opensaml/saml/saml2/profile/impl/ValidateAssertionsTest.java
@@ -23,7 +23,7 @@ import java.util.List;
 import java.util.Map;
 import java.util.function.Supplier;
 
-import javax.servlet.http.HttpServletResponse;
+import jakarta.servlet.http.HttpServletResponse;
 
 import org.opensaml.core.testing.OpenSAMLInitBaseTestCase;
 import org.opensaml.profile.context.ProfileRequestContext;
diff --git a/opensaml-storage-impl/src/test/java/org/opensaml/storage/impl/client/LoadClientStorageServicesTest.java b/opensaml-storage-impl/src/test/java/org/opensaml/storage/impl/client/LoadClientStorageServicesTest.java
index e67a38941..251164c08 100644
--- a/opensaml-storage-impl/src/test/java/org/opensaml/storage/impl/client/LoadClientStorageServicesTest.java
+++ b/opensaml-storage-impl/src/test/java/org/opensaml/storage/impl/client/LoadClientStorageServicesTest.java
@@ -40,7 +40,7 @@ import com.google.common.net.UrlEscapers;
 import jakarta.servlet.http.Cookie;
 import net.shibboleth.utilities.java.support.component.ComponentInitializationException;
 import net.shibboleth.utilities.java.support.net.HttpServletRequestResponseContext;
-import net.shibboleth.utilities.java.support.net.ThreadLocalHttpServletRequestProxy;
+import net.shibboleth.utilities.java.support.net.ThreadLocalHttpServletRequestSupplier;
 
 /** Unit test for {@link LoadClientStorageServices}. */
 public class LoadClientStorageServicesTest extends AbstractBaseClientStorageServiceTest {
@@ -60,7 +60,7 @@ public class LoadClientStorageServicesTest extends AbstractBaseClientStorageServ
         loadCtx.getStorageKeys().add(STORAGE_NAME);
         
         action = new LoadClientStorageServices();
-        action.setHttpServletRequestSupplier(new ThreadLocalHttpServletRequestProxy());
+        action.setHttpServletRequestSupplier(new ThreadLocalHttpServletRequestSupplier());
         HttpServletRequestResponseContext.loadCurrent(new MockHttpServletRequest(), new MockHttpServletResponse());
     }
 

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


More information about the commits mailing list