NamingException
Multithreaded access to an instance is only safe when client code locks the object first.
137138139140141142143
} public DirContext getSchemaClassDefinition( String name ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
143144145146147148149
} public DirContext getSchema( Name name ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
149150151152153154155
} public DirContext getSchemaClassDefinition( Name name ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
155156157158159160161
} public void modifyAttributes( String name, ModificationItem[] mods ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
161162163164165166167
} public NamingEnumeration<SearchResult> search( String name, Attributes matchingAttributes ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
167168169170171172173
} public NamingEnumeration<SearchResult> search( Name name, Attributes matchingAttributes ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
173174175176177178179
} public void bind( String name, Object obj, Attributes attrs ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
179180181182183184185
} public void rebind( String name, Object obj, Attributes attrs ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
185186187188189190191
} public void bind( Name name, Object obj, Attributes attrs ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
191192193194195196197
} public void rebind( Name name, Object obj, Attributes attrs ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }