1 17 package org.apache.ldap.server.prefs; 18 19 20 import org.apache.ldap.common.NotImplementedException; 21 22 import java.util.prefs.Preferences ; 23 import java.util.prefs.PreferencesFactory ; 24 25 26 33 public class ServerPreferencesFactory implements PreferencesFactory  34 { 35 public Preferences systemRoot() 36 { 37 return new ServerSystemPreferences(); 38 } 39 40 41 public Preferences userRoot() 42 { 43 throw new NotImplementedException( "userRoot() in org.apache.ldap.server.prefs.ServerPreferencesFactory not implemented!" ); 44 } 45 } 46 | Popular Tags |