org.apache.directory.server.core.schema
Interface NormalizerRegistryMonitor

All Known Implementing Classes:
NormalizerRegistryMonitorAdapter

public interface NormalizerRegistryMonitor

Monitor interface for a NormalizerRegistry.

Version:
$Rev: 434579 $
Author:
Apache Directory Project

Method Summary
 void lookedUp(java.lang.String oid, org.apache.directory.shared.ldap.schema.Normalizer normalizer)
          Monitors when a Normalizer is successfully looked up.
 void lookupFailed(java.lang.String oid, javax.naming.NamingException fault)
          Monitors when a lookup attempt fails.
 void registered(java.lang.String oid, org.apache.directory.shared.ldap.schema.Normalizer normalizer)
          Monitors when a Normalizer is registered successfully.
 void registerFailed(java.lang.String oid, org.apache.directory.shared.ldap.schema.Normalizer normalizer, javax.naming.NamingException fault)
          Monitors when a registration attempt fails.
 

Method Detail

registered

void registered(java.lang.String oid,
                org.apache.directory.shared.ldap.schema.Normalizer normalizer)
Monitors when a Normalizer is registered successfully.

Parameters:
oid -
normalizer - the Normalizer registered

lookedUp

void lookedUp(java.lang.String oid,
              org.apache.directory.shared.ldap.schema.Normalizer normalizer)
Monitors when a Normalizer is successfully looked up.

Parameters:
oid -
normalizer - the Normalizer looked up

lookupFailed

void lookupFailed(java.lang.String oid,
                  javax.naming.NamingException fault)
Monitors when a lookup attempt fails.

Parameters:
oid - the OID for the Normalizer to lookup
fault - the exception to be thrown for the fault

registerFailed

void registerFailed(java.lang.String oid,
                    org.apache.directory.shared.ldap.schema.Normalizer normalizer,
                    javax.naming.NamingException fault)
Monitors when a registration attempt fails.

Parameters:
oid -
normalizer - the Normalizer which failed registration
fault - the exception to be thrown for the fault


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