You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2018/01/15 07:24:55 UTC

svn commit: r1821128 - /directory/site/trunk/content/apacheds/advanced-ug/1.4-interceptors.mdtext

Author: elecharny
Date: Mon Jan 15 07:24:55 2018
New Revision: 1821128

URL: http://svn.apache.org/viewvc?rev=1821128&view=rev
Log:
Fixed a typo (DIR-327)

Modified:
    directory/site/trunk/content/apacheds/advanced-ug/1.4-interceptors.mdtext

Modified: directory/site/trunk/content/apacheds/advanced-ug/1.4-interceptors.mdtext
URL: http://svn.apache.org/viewvc/directory/site/trunk/content/apacheds/advanced-ug/1.4-interceptors.mdtext?rev=1821128&r1=1821127&r2=1821128&view=diff
==============================================================================
--- directory/site/trunk/content/apacheds/advanced-ug/1.4-interceptors.mdtext (original)
+++ directory/site/trunk/content/apacheds/advanced-ug/1.4-interceptors.mdtext Mon Jan 15 07:24:55 2018
@@ -26,7 +26,7 @@ Notice: Licensed to the Apache Software
 
 _Interceptors_ are functional layers inside the _DirectoryService_. Each one of them are responsible for a specific task. They are ordered, and this order is not to be changed.
 
-Each operation rceived by the _DirectoryService_ will be processed by various interceptors, one after the other, down to the backend, and again when the result comes back to the caller. An _interceptor_ can call the next _interceptor_, whcih will be determinated by the position it has in the chain of _interceptors_, or simply return. Note that calling the next _interceptor_ does not require that you know which one will be called.
+Each operation received by the _DirectoryService_ will be processed by various interceptors, one after the other, down to the backend, and again when the result comes back to the caller. An _interceptor_ can call the next _interceptor_, whcih will be determinated by the position it has in the chain of _interceptors_, or simply return. Note that calling the next _interceptor_ does not require that you know which one will be called.
 
 Some _Interceptors_ can be disabled, some other can be enabled. It's also possible to add some new one.