org.apache.ldap.server.schema
Interface DITContentRuleRegistryMonitor

All Known Implementing Classes:
DITContentRuleRegistryMonitorAdapter

public interface DITContentRuleRegistryMonitor

Interface for DITContentRuleRegitery callback event monitors.

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

Method Summary
 void lookedUp(org.apache.ldap.common.schema.DITContentRule dITContentRule)
          Monitors when a Comparator is successfully looked up.
 void lookupFailed(java.lang.String oid, java.lang.Throwable fault)
          Monitors when a lookup attempt fails.
 void registered(org.apache.ldap.common.schema.DITContentRule dITContentRule)
          Monitors when a DITContentRule is registered successfully.
 void registerFailed(org.apache.ldap.common.schema.DITContentRule dITContentRule, java.lang.Throwable fault)
          Monitors when a registration attempt fails.
 

Method Detail

registered

public void registered(org.apache.ldap.common.schema.DITContentRule dITContentRule)
Monitors when a DITContentRule is registered successfully.

Parameters:
dITContentRule - the DITContentRule successfully registered

lookedUp

public void lookedUp(org.apache.ldap.common.schema.DITContentRule dITContentRule)
Monitors when a Comparator is successfully looked up.

Parameters:
dITContentRule - the DITContentRule successfully lookedup

lookupFailed

public void lookupFailed(java.lang.String oid,
                         java.lang.Throwable fault)
Monitors when a lookup attempt fails.

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

registerFailed

public void registerFailed(org.apache.ldap.common.schema.DITContentRule dITContentRule,
                           java.lang.Throwable fault)
Monitors when a registration attempt fails.

Parameters:
dITContentRule - the DITContentRule which failed registration
fault - the exception to be thrown for the fault