View Javadoc

1   //
2   //  ========================================================================
3   //  Copyright (c) 1995-2016 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  package org.eclipse.jetty.jndi;
20  
21  import java.util.Iterator;
22  
23  import javax.naming.Binding;
24  import javax.naming.NameClassPair;
25  import javax.naming.NamingEnumeration;
26  import javax.naming.NamingException;
27  
28  /** 
29   * NameEnumeration
30   */
31  public class NameEnumeration implements NamingEnumeration<NameClassPair>
32  {
33      Iterator<Binding> _delegate;
34  
35      public NameEnumeration (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 NameClassPair next()
52          throws NamingException
53      {
54          Binding b = _delegate.next();
55          return new NameClassPair(b.getName(),b.getClassName(),true);
56      }
57  
58      public boolean hasMoreElements()
59      {
60          return _delegate.hasNext();
61      }
62  
63      public NameClassPair nextElement()
64      {
65          Binding b = _delegate.next();
66          return new NameClassPair(b.getName(),b.getClassName(),true);
67      }
68  }