NamingException
Multithreaded access to an instance is only safe when client code locks the object first.
381382383384385386387
} public NameParser getNameParser( String name ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
387388389390391392393
} public NameParser getNameParser( Name name ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
393394395396397398399
} public NamingEnumeration<NameClassPair> list( String name ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
399400401402403404405
} public NamingEnumeration<Binding> listBindings( String name ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
405406407408409410411
} public NamingEnumeration<NameClassPair> list( Name name ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
411412413414415416417
} public NamingEnumeration<Binding> listBindings( Name name ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
417418419420421422423
} public Object addToEnvironment( String propName, Object propVal ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
423424425426427428429
} public String composeName( String name, String prefix ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
429430431432433434435
} public Name composeName( Name name, Name prefix ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
436437438439440441442
public void addNamingListener( Name name, String s, SearchControls searchControls, NamingListener namingListener ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }