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