From 0fbbd8dc81d2985c2eae06bb498130026a43091a Mon Sep 17 00:00:00 2001 From: Przemek Nowak Date: Sun, 17 Jul 2016 16:05:07 +0200 Subject: [PATCH] #463 Added javax.servlet.Filter to real world examples of chain --- chain/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/chain/README.md b/chain/README.md index ef18f6f64..bf2ef6b6c 100644 --- a/chain/README.md +++ b/chain/README.md @@ -26,6 +26,7 @@ Use Chain of Responsibility when ## Real world examples +* [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) * [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) * [Apache Commons Chain](https://commons.apache.org/proper/commons-chain/index.html)