[java-opensaml] branch main updated: Add deprecations for a couple of inner classes refactored out to shib-support

Codeberg noreply at shibboleth.net
Sun May 10 00:33:02 UTC 2026


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

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

View the commit online:
https://codeberg.org/Shibboleth/java-opensaml/commit/7f57559e957e1f59255f97aab7fcf9d9c81715bd

The following commit(s) were added to refs/heads/main by this push:
     new 7f57559e9 Add deprecations for a couple of inner classes refactored out to shib-support
7f57559e9 is described below

commit 7f57559e957e1f59255f97aab7fcf9d9c81715bd
Author: Brent Putman <putmanb at georgetown.edu>
AuthorDate: Sat May 9 20:29:21 2026 -0400

    Add deprecations for a couple of inner classes refactored out to shib-support
---
 .../saml/saml2/binding/decoding/impl/HTTPRedirectDeflateDecoder.java   | 3 +++
 .../saml/saml2/binding/encoding/impl/HTTPRedirectDeflateEncoder.java   | 3 +++
 2 files changed, 6 insertions(+)

diff --git a/opensaml-saml-impl/src/main/java/org/opensaml/saml/saml2/binding/decoding/impl/HTTPRedirectDeflateDecoder.java b/opensaml-saml-impl/src/main/java/org/opensaml/saml/saml2/binding/decoding/impl/HTTPRedirectDeflateDecoder.java
index 3faf8790d..b586050dd 100644
--- a/opensaml-saml-impl/src/main/java/org/opensaml/saml/saml2/binding/decoding/impl/HTTPRedirectDeflateDecoder.java
+++ b/opensaml-saml-impl/src/main/java/org/opensaml/saml/saml2/binding/decoding/impl/HTTPRedirectDeflateDecoder.java
@@ -332,7 +332,10 @@ public class HTTPRedirectDeflateDecoder extends BaseSAMLHttpServletRequestDecode
     
     /** A subclass of {@link InflaterInputStream} which defaults in a no-wrap {@link Inflater} instance and
      * closes it when the stream is closed.
+     * 
+     * @deprecated use instead net.shibboleth.shared.io.NoWrapAutoEndInflaterInputStream
      */
+    @Deprecated(forRemoval = true, since = "5.2.2")
     private class NoWrapAutoEndInflaterInputStream extends InflaterInputStream {
 
         /**
diff --git a/opensaml-saml-impl/src/main/java/org/opensaml/saml/saml2/binding/encoding/impl/HTTPRedirectDeflateEncoder.java b/opensaml-saml-impl/src/main/java/org/opensaml/saml/saml2/binding/encoding/impl/HTTPRedirectDeflateEncoder.java
index 661d28451..48c6a8274 100644
--- a/opensaml-saml-impl/src/main/java/org/opensaml/saml/saml2/binding/encoding/impl/HTTPRedirectDeflateEncoder.java
+++ b/opensaml-saml-impl/src/main/java/org/opensaml/saml/saml2/binding/encoding/impl/HTTPRedirectDeflateEncoder.java
@@ -298,7 +298,10 @@ public class HTTPRedirectDeflateEncoder extends BaseSAML2MessageEncoder {
 
     /** A subclass of {@link DeflaterOutputStream} which defaults in a no-wrap {@link Deflater} instance and
      * closes it when the stream is closed.
+     * 
+     * @deprecated use instead net.shibboleth.shared.io.NoWrapAutoEndDeflaterOutputStream
      */
+    @Deprecated(forRemoval = true, since = "5.2.2")
     private class NoWrapAutoEndDeflaterOutputStream extends DeflaterOutputStream {
 
         /**

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


More information about the commits mailing list