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