Uses of Interface
org.apache.directory.server.core.interceptor.Interceptor

Packages that use Interceptor
org.apache.directory.server.core   
org.apache.directory.server.core.authn   
org.apache.directory.server.core.authz   
org.apache.directory.server.core.changelog  
org.apache.directory.server.core.collective   
org.apache.directory.server.core.event   
org.apache.directory.server.core.exception   
org.apache.directory.server.core.interceptor   
org.apache.directory.server.core.journal   
org.apache.directory.server.core.kerberos   
org.apache.directory.server.core.normalization   
org.apache.directory.server.core.operational   
org.apache.directory.server.core.referral   
org.apache.directory.server.core.schema  
org.apache.directory.server.core.subtree   
org.apache.directory.server.core.trigger   
 

Uses of Interceptor in org.apache.directory.server.core
 

Classes in org.apache.directory.server.core that implement Interceptor
 class MockInterceptor
           
 

Methods in org.apache.directory.server.core that return Interceptor
 Interceptor MockDirectoryService.getInterceptor(java.lang.String interceptorName)
           
 Interceptor DefaultDirectoryService.getInterceptor(java.lang.String interceptorName)
          Get an Interceptor instance from its name
 Interceptor DirectoryService.getInterceptor(java.lang.String interceptorName)
          Get an Interceptor instance from its name
 

Methods in org.apache.directory.server.core that return types with arguments of type Interceptor
 java.util.List<Interceptor> MockDirectoryService.getInterceptors()
           
 java.util.List<Interceptor> DefaultDirectoryService.getInterceptors()
          Returns interceptors in the server.
 java.util.List<Interceptor> DirectoryService.getInterceptors()
          Returns interceptors in the server.
 

Method parameters in org.apache.directory.server.core with type arguments of type Interceptor
 void MockDirectoryService.setInterceptors(java.util.List<Interceptor> interceptors)
           
 void DefaultDirectoryService.setInterceptors(java.util.List<Interceptor> interceptors)
          Sets the interceptors in the server.
 void DirectoryService.setInterceptors(java.util.List<Interceptor> interceptors)
          Sets the interceptors in the server.
 

Uses of Interceptor in org.apache.directory.server.core.authn
 

Classes in org.apache.directory.server.core.authn that implement Interceptor
 class AuthenticationInterceptor
          An Interceptor that authenticates users.
 

Uses of Interceptor in org.apache.directory.server.core.authz
 

Classes in org.apache.directory.server.core.authz that implement Interceptor
 class AciAuthorizationInterceptor
          An ACI based authorization service.
 class DefaultAuthorizationInterceptor
          An Interceptor that controls access to DefaultPartitionNexus.
 

Uses of Interceptor in org.apache.directory.server.core.changelog
 

Classes in org.apache.directory.server.core.changelog that implement Interceptor
 class ChangeLogInterceptor
          An interceptor which intercepts write operations to the directory and logs them with the server's ChangeLog service.
 

Uses of Interceptor in org.apache.directory.server.core.collective
 

Classes in org.apache.directory.server.core.collective that implement Interceptor
 class CollectiveAttributeInterceptor
          An interceptor based service dealing with collective attribute management.
 

Uses of Interceptor in org.apache.directory.server.core.event
 

Classes in org.apache.directory.server.core.event that implement Interceptor
 class EventInterceptor
          An Interceptor based service for notifying DirectoryListeners of changes to the DIT.
 

Uses of Interceptor in org.apache.directory.server.core.exception
 

Classes in org.apache.directory.server.core.exception that implement Interceptor
 class ExceptionInterceptor
          An Interceptor that detects any operations that breaks integrity of Partition and terminates the current invocation chain by throwing a Exception.
 

Uses of Interceptor in org.apache.directory.server.core.interceptor
 

Classes in org.apache.directory.server.core.interceptor that implement Interceptor
 class BaseInterceptor
          A easy-to-use implementation of Interceptor.
 

Methods in org.apache.directory.server.core.interceptor that return Interceptor
 Interceptor InterceptorChain.get(java.lang.String interceptorName)
          Returns the registered interceptor with the specified name.
 Interceptor InterceptorException.getInterceptor()
          Gets the interceptor this exception is associated with.
 

Methods in org.apache.directory.server.core.interceptor that return types with arguments of type Interceptor
 java.util.List<Interceptor> InterceptorChain.getAll()
          Returns the list of all registered interceptors.
 

Methods in org.apache.directory.server.core.interceptor with parameters of type Interceptor
 void InterceptorChain.addAfter(java.lang.String prevInterceptorName, Interceptor interceptor)
           
 void InterceptorChain.addBefore(java.lang.String nextInterceptorName, Interceptor interceptor)
           
 void InterceptorChain.addFirst(Interceptor interceptor)
           
 void InterceptorChain.addLast(Interceptor interceptor)
           
 

Constructors in org.apache.directory.server.core.interceptor with parameters of type Interceptor
InterceptorException(Interceptor interceptor)
          Creates an InterceptorException without a message.
InterceptorException(Interceptor interceptor, java.lang.String explanation)
          Creates an InterceptorException with a custom message.
InterceptorException(Interceptor interceptor, java.lang.String explanation, java.lang.Throwable rootCause)
          Creates an InterceptorException without a message.
InterceptorException(Interceptor interceptor, java.lang.Throwable rootCause)
          Creates an InterceptorException without a message.
 

Uses of Interceptor in org.apache.directory.server.core.journal
 

Classes in org.apache.directory.server.core.journal that implement Interceptor
 class JournalInterceptor
          An interceptor which intercepts write operations to the directory and logs them into a journal.
 

Uses of Interceptor in org.apache.directory.server.core.kerberos
 

Classes in org.apache.directory.server.core.kerberos that implement Interceptor
 class KeyDerivationInterceptor
          An Interceptor that creates symmetric Kerberos keys for users.
 class PasswordPolicyInterceptor
          An Interceptor that enforces password policy for users.
 

Uses of Interceptor in org.apache.directory.server.core.normalization
 

Classes in org.apache.directory.server.core.normalization that implement Interceptor
 class NormalizationInterceptor
          A name normalization service.
 

Uses of Interceptor in org.apache.directory.server.core.operational
 

Classes in org.apache.directory.server.core.operational that implement Interceptor
 class OperationalAttributeInterceptor
          An Interceptor that adds or modifies the default attributes of entries.
 

Uses of Interceptor in org.apache.directory.server.core.referral
 

Classes in org.apache.directory.server.core.referral that implement Interceptor
 class ReferralInterceptor
          An service which is responsible referral handling behavoirs.
 

Uses of Interceptor in org.apache.directory.server.core.schema
 

Classes in org.apache.directory.server.core.schema that implement Interceptor
 class SchemaInterceptor
          An Interceptor that manages and enforces schemas.
 

Uses of Interceptor in org.apache.directory.server.core.subtree
 

Classes in org.apache.directory.server.core.subtree that implement Interceptor
 class SubentryInterceptor
          The Subentry interceptor service which is responsible for filtering out subentries on search operations and injecting operational attributes
 

Uses of Interceptor in org.apache.directory.server.core.trigger
 

Classes in org.apache.directory.server.core.trigger that implement Interceptor
 class TriggerInterceptor
          The Trigger Service based on the Trigger Specification.
 



Copyright © 2003-2011 Apache Software Foundation. All Rights Reserved.