183184185186187188189
public static class BogusSearchHandler extends SearchHandler { public void searchMessageReceived( IoSession session, InternalSearchRequest request ) { throw new NotImplementedException( "handler not implemented!" ); }
355356357358359360361362363364365
// } // else // { // list = index.listIndices( regex ); // } throw new NotImplementedException(); } else { list = index.forwardCursor(); while ( list.next() )
661662663664665666667
*/ public ClonedServerEntry lookup( Long id ) throws Exception { // TODO not implemented until we can use id to figure out the partition using // the partition ID component of the 64 bit Long identifier throw new NotImplementedException(); }
117118119120121122123124125126127
/* ---------- NOT IMPLEMENTED ---------- */ case ASSERTION: case EXTENSIBLE: throw new NotImplementedException(); default: throw new IllegalStateException( I18n.err( I18n.ERR_260, node.getAssertionType() ) ); } }
114115116117118119120121122123124
283284285286287288289
public Registries getRegistries( LdapDN dn ) { LOG.error( "Ignoring request for specific registries under dn {}", dn ); throw new NotImplementedException(); }
784785786787788789790
public ClonedServerEntry lookup( Long id ) throws Exception { // TODO not implemented until we can lookup partition using the // partition id component of the 64 bit identifier throw new NotImplementedException(); }
906907908909910911912913914915916
break; default: LOG.error( "ChangeType unknown" ); throw new NotImplementedException( "Reverts of change type " + reverse.getChangeType() + " has not yet been implemented!"); } } } }
133134135136137138139140141142143
{ return substringEvaluator.evaluate( node, dn, entry ); } else if ( node instanceof ExtensibleNode ) { throw new NotImplementedException(); } else { throw new NamingException( "Unrecognized leaf node type: " + node ); }
412413414415416417418
} String message = "I don't really know how to compare anything other " + "than ServerBinaryValues at this point in time."; LOG.error( message ); throw new NotImplementedException( message ); }