181182183184185186187
} public void rebind( String name, Object obj, Attributes attrs ) throws NamingException { throw new LdapServiceUnavailableException( EXCEPTION_MSG, ResultCodeEnum.UNAVAILABLE ); }
187188189190191192193
} public void bind( Name name, Object obj, Attributes attrs ) throws NamingException { throw new LdapServiceUnavailableException( EXCEPTION_MSG, ResultCodeEnum.UNAVAILABLE ); }
193194195196197198199
} public void rebind( Name name, Object obj, Attributes attrs ) throws NamingException { throw new LdapServiceUnavailableException( EXCEPTION_MSG, ResultCodeEnum.UNAVAILABLE ); }
199200201202203204205
} public Attributes getAttributes( String name, String[] attrIds ) throws NamingException { throw new LdapServiceUnavailableException( EXCEPTION_MSG, ResultCodeEnum.UNAVAILABLE ); }
205206207208209210211
} public Attributes getAttributes( Name name, String[] attrIds ) throws NamingException { throw new LdapServiceUnavailableException( EXCEPTION_MSG, ResultCodeEnum.UNAVAILABLE ); }
211212213214215216217
} public DirContext createSubcontext( String name, Attributes attrs ) throws NamingException { throw new LdapServiceUnavailableException( EXCEPTION_MSG, ResultCodeEnum.UNAVAILABLE ); }
217218219220221222223
} public DirContext createSubcontext( Name name, Attributes attrs ) throws NamingException { throw new LdapServiceUnavailableException( EXCEPTION_MSG, ResultCodeEnum.UNAVAILABLE ); }
224225226227228229230
public NamingEnumeration<SearchResult> search( String name, Attributes matchingAttributes, String[] attributesToReturn ) throws NamingException { throw new LdapServiceUnavailableException( EXCEPTION_MSG, ResultCodeEnum.UNAVAILABLE ); }
231232233234235236237
public NamingEnumeration<SearchResult> search( Name name, Attributes matchingAttributes, String[] attributesToReturn ) throws NamingException { throw new LdapServiceUnavailableException( EXCEPTION_MSG, ResultCodeEnum.UNAVAILABLE ); }
237238239240241242243
} public NamingEnumeration<SearchResult> search( String name, String filter, SearchControls cons ) throws NamingException { throw new LdapServiceUnavailableException( EXCEPTION_MSG, ResultCodeEnum.UNAVAILABLE ); }