The BindingIterator interface allows a client to iterate through the bindings using the next_one or next_n operations. The bindings iterator is obtained by using the list method on the NamingContext. @see org.omg.CosNaming.NamingContext#list
This operation destroys the iterator.
    void destroy
    (
    );
This operation returns at most the requested number of bindings. @param how_many the maximum number of bindings tro return
    boolean next_n
    (
        in unsigned long how_many,
        out CosNaming::BindingList bl
    );
@param bl the returned bindings
This operation returns the next binding. If there are no more bindings, false is returned. @param b the returned binding
    boolean next_one
    (
        out CosNaming::Binding b
    );