1 17 package org.apache.ldap.server.schema; 18 19 20 import org.apache.ldap.common.schema.MatchingRule; 21 22 import javax.naming.NamingException ; 23 24 25 31 public class MatchingRuleRegistryMonitorAdapter 32 implements MatchingRuleRegistryMonitor 33 { 34 38 public void registered( MatchingRule rule ) 39 { 40 } 41 42 43 47 public void lookedUp( MatchingRule rule ) 48 { 49 } 50 51 52 56 public void lookupFailed( String oid, NamingException fault ) 57 { 58 if ( fault != null ) 59 { 60 fault.printStackTrace(); 61 } 62 } 63 64 65 69 public void registerFailed( MatchingRule rule, NamingException fault ) 70 { 71 if ( fault != null ) 72 { 73 fault.printStackTrace(); 74 } 75 } 76 } 77 | Popular Tags |