[java-shib-attribute] branch main updated: Alter new setter to return the context for fluent use.

Codeberg noreply at shibboleth.net
Thu Jan 15 01:39:13 UTC 2026


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

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

View the commit online:
https://codeberg.org/Shibboleth/java-shib-attribute/commit/686821aed4056c4e8c01f3e9c8362e80fac11cde

The following commit(s) were added to refs/heads/main by this push:
     new 686821aed Alter new setter to return the context for fluent use.
686821aed is described below

commit 686821aed4056c4e8c01f3e9c8362e80fac11cde
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Wed Jan 14 20:38:59 2026 -0500

    Alter new setter to return the context for fluent use.
---
 .../idp/attribute/filter/context/AttributeFilterContext.java        | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/shib-attribute-filter-api/src/main/java/net/shibboleth/idp/attribute/filter/context/AttributeFilterContext.java b/shib-attribute-filter-api/src/main/java/net/shibboleth/idp/attribute/filter/context/AttributeFilterContext.java
index 76e12100e..ffac9ba5a 100644
--- a/shib-attribute-filter-api/src/main/java/net/shibboleth/idp/attribute/filter/context/AttributeFilterContext.java
+++ b/shib-attribute-filter-api/src/main/java/net/shibboleth/idp/attribute/filter/context/AttributeFilterContext.java
@@ -176,10 +176,14 @@ public final class AttributeFilterContext extends BaseContext {
      * 
      * @param what if true then we will include unfiltered attributes in the result
      * 
+     * @return this context
+     * 
      * @since 5.2.0
      */
-    public void setIncludeUnfilteredAttributes(final boolean what) {
+    @Nonnull public AttributeFilterContext setIncludeUnfilteredAttributes(final boolean what) {
         includeUnfilteredAttributes = what;
+        
+        return this;
     }
     
     /**

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


More information about the commits mailing list