View Javadoc

1   //
2   //  ========================================================================
3   //  Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd.
4   //  ------------------------------------------------------------------------
5   //  All rights reserved. This program and the accompanying materials
6   //  are made available under the terms of the Eclipse Public License v1.0
7   //  and Apache License v2.0 which accompanies this distribution.
8   //
9   //      The Eclipse Public License is available at
10  //      http://www.eclipse.org/legal/epl-v10.html
11  //
12  //      The Apache License v2.0 is available at
13  //      http://www.opensource.org/licenses/apache2.0.php
14  //
15  //  You may elect to redistribute this code under either of these licenses.
16  //  ========================================================================
17  //
18  
19  
20  package org.eclipse.jetty.jndi;
21  
22  import java.util.Iterator;
23  
24  import javax.naming.Binding;
25  import javax.naming.NamingEnumeration;
26  import javax.naming.NamingException;
27  
28  /** 
29   * BindingEnumeration
30   */
31  public class BindingEnumeration implements NamingEnumeration<Binding>
32  {
33      Iterator<Binding> _delegate;
34  
35      public BindingEnumeration (Iterator<Binding> e)
36      {
37          _delegate = e;
38      }
39  
40      public void close()
41          throws NamingException
42      {
43      }
44  
45      public boolean hasMore ()
46          throws NamingException
47      {
48          return _delegate.hasNext();
49      }
50  
51      public Binding next()
52          throws NamingException
53      {
54          Binding b = (Binding)_delegate.next();
55          return new Binding (b.getName(), b.getClassName(), b.getObject(), true);
56      }
57  
58      public boolean hasMoreElements()
59      {
60          return _delegate.hasNext();
61      }
62  
63      public Binding nextElement()
64      {
65          Binding b = (Binding)_delegate.next();
66          return new Binding (b.getName(), b.getClassName(), b.getObject(),true);
67      }
68  }