NamingException
Multithreaded access to an instance is only safe when client code locks the object first.
197198199200201202203
} public Attributes getAttributes( String name, String[] attrIds ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
203204205206207208209
} public Attributes getAttributes( Name name, String[] attrIds ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
209210211212213214215
} public DirContext createSubcontext( String name, Attributes attrs ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
215216217218219220221
} public DirContext createSubcontext( Name name, Attributes attrs ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
222223224225226227228
public NamingEnumeration<SearchResult> search( String name, Attributes matchingAttributes, String[] attributesToReturn ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
229230231232233234235
public NamingEnumeration<SearchResult> search( Name name, Attributes matchingAttributes, String[] attributesToReturn ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
235236237238239240241
} public NamingEnumeration<SearchResult> search( String name, String filter, SearchControls cons ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
241242243244245246247
} public NamingEnumeration<SearchResult> search( Name name, String filter, SearchControls cons ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
248249250251252253254
public NamingEnumeration<SearchResult> search( String name, String filterExpr, Object[] filterArgs, SearchControls cons ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
255256257258259260261
public NamingEnumeration<SearchResult> search( Name name, String filterExpr, Object[] filterArgs, SearchControls cons ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }