1 17 package org.apache.ldap.server.schema; 18 19 20 import org.apache.ldap.common.schema.DITContentRule; 21 22 23 30 public class DITContentRuleRegistryMonitorAdapter 31 implements DITContentRuleRegistryMonitor 32 { 33 public void registered( DITContentRule dITContentRule ) 34 { 35 } 36 37 38 public void lookedUp( DITContentRule dITContentRule ) 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( DITContentRule dITContentRule, Throwable fault ) 53 { 54 if ( fault != null ) 55 { 56 fault.printStackTrace(); 57 } 58 } 59 } 60 | Popular Tags |