1 17 package org.apache.ldap.server.schema; 18 19 20 import org.apache.ldap.common.schema.DITStructureRule; 21 22 23 30 public class DITStructureRuleRegistryMonitorAdapter 31 implements DITStructureRuleRegistryMonitor 32 { 33 public void registered( DITStructureRule dITStructureRule ) 34 { 35 } 36 37 38 public void lookedUp( DITStructureRule dITStructureRule ) 39 { 40 } 41 42 43 public void lookupFailed( String oid, Throwable fault ) 44 { 45 if ( fault != null ) 46 { 47 fault.printStackTrace(); 48 } 49 } 50 51 52 public void registerFailed( DITStructureRule dITStructureRule, Throwable fault ) 53 { 54 if ( fault != null ) 55 { 56 fault.printStackTrace(); 57 } 58 } 59 } 60 | Popular Tags |