Skip to content

Commit f7b7f15

Browse files
committed
iluwatar#463 Added javax.servlet.Filter to real world examples of intercepting filter
1 parent 0fbbd8d commit f7b7f15

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

chain/README.md

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ Use Chain of Responsibility when
2626

2727
## Real world examples
2828

29-
* [javax.servlet.FilterChain](https://tomcat.apache.org/tomcat-8.0-doc/servletapi/javax/servlet/FilterChain.html) and [javax.servlet.Filter](https://tomcat.apache.org/tomcat-8.0-doc/servletapi/javax/servlet/Filter.html)
3029
* [java.util.logging.Logger#log()](http://docs.oracle.com/javase/8/docs/api/java/util/logging/Logger.html#log%28java.util.logging.Level,%20java.lang.String%29)
3130
* [Apache Commons Chain](https://commons.apache.org/proper/commons-chain/index.html)
3231

intercepting-filter/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ Use the Intercepting Filter pattern when
2424

2525
## Real world examples
2626

27+
* [javax.servlet.FilterChain](https://tomcat.apache.org/tomcat-8.0-doc/servletapi/javax/servlet/FilterChain.html) and [javax.servlet.Filter](https://tomcat.apache.org/tomcat-8.0-doc/servletapi/javax/servlet/Filter.html)
2728
* [Struts 2 - Interceptors](https://struts.apache.org/docs/interceptors.html)
2829

2930
## Credits

0 commit comments

Comments
 (0)