1 17 package org.apache.ldap.server.schema; 18 19 20 import org.apache.ldap.common.schema.NameForm; 21 22 import javax.naming.NamingException ; 23 import java.util.Iterator ; 24 25 26 32 public interface NameFormRegistry 33 { 34 42 void register( String schema, NameForm nameForm ) throws NamingException ; 43 44 51 NameForm lookup( String id ) throws NamingException ; 52 53 60 String getSchemaName( String id ) throws NamingException ; 61 62 69 boolean hasNameForm( String id ); 70 71 76 Iterator list(); 77 } 78 | Popular Tags |