Package org.jboss.fresh.registry

Examples of org.jboss.fresh.registry.RegistryContext.listBindings()


        else
          out.print("Object is not instance of Context. Can't list it. : " + name);
        return;
      }

      NamingEnumeration it = ctx.listBindings(name);
      while (it.hasMore()) {
        Binding bing = (Binding) it.next();
        out.println(bing.toString());
      }
      out.close();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.