[java-shib-shared] branch main updated: JSSH-8 - Servlet filter that implements its own filter-mapping layer
Scott Cantor
cantor.2 at osu.edu
Mon Oct 3 14:22:13 UTC 2022
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch main
in repository java-shib-shared.
View the commit online:
http://git.shibboleth.net/view/?p=java-shib-shared.git;a=commit;h=f86efa56d510abcdd56ae70953ac8f4c62eea478
The following commit(s) were added to refs/heads/main by this push:
new f86efa56 JSSH-8 - Servlet filter that implements its own filter-mapping layer
f86efa56 is described below
commit f86efa56d510abcdd56ae70953ac8f4c62eea478
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Mon Oct 3 10:22:11 2022 -0400
JSSH-8 - Servlet filter that implements its own filter-mapping layer
https://shibboleth.atlassian.net/browse/JSSH-8
Add default getOrder method.
---
.../java/net/shibboleth/shared/spring/servlet/ChainableFilter.java | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/shib-networking-spring/src/main/java/net/shibboleth/shared/spring/servlet/ChainableFilter.java b/shib-networking-spring/src/main/java/net/shibboleth/shared/spring/servlet/ChainableFilter.java
index 9fbed6f9..2e403375 100644
--- a/shib-networking-spring/src/main/java/net/shibboleth/shared/spring/servlet/ChainableFilter.java
+++ b/shib-networking-spring/src/main/java/net/shibboleth/shared/spring/servlet/ChainableFilter.java
@@ -68,4 +68,9 @@ public interface ChainableFilter extends Filter, Ordered {
}
}
+ /** {@inheritDoc} */
+ default int getOrder() {
+ return FilterOrder.NEUTRAL.getValue();
+ }
+
}
\ No newline at end of file
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list