org.apache.ldap.server.schema
Interface NormalizerRegistryMonitor

All Known Implementing Classes:
NormalizerRegistryMonitorAdapter

public interface NormalizerRegistryMonitor

Monitor interface for a NormalizerRegistry.

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

Method Summary
 void lookedUp(java.lang.String oid, org.apache.ldap.common.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.ldap.common.schema.Normalizer normalizer)
          Monitors when a Normalizer is registered successfully.
 void registerFailed(java.lang.String oid, org.apache.ldap.common.schema.Normalizer normalizer, javax.naming.NamingException fault)
          Monitors when a registration attempt fails.
 

Method Detail

registered

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

Parameters:
oid -
normalizer - the Normalizer registered

lookedUp

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

Parameters:
oid -
normalizer - the Normalizer looked up

lookupFailed

public 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

public void registerFailed(java.lang.String oid,
                           org.apache.ldap.common.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