Package org.jboss.test.classloader.scoping.naming.service

Examples of org.jboss.test.classloader.scoping.naming.service.BindValue


         Context testCtx = (Context) ctx.lookup("shared-context");
         Integer count = (Integer) testCtx.lookup("KeyCount");
         for(int n = 0; n < count.intValue(); n ++)
         {
            String key = "Key#" + n;
            BindValue value = (BindValue) testCtx.lookup(key);
            pw.println("\t<li>"+value.getValue()+"</li>");
         }
      }
      catch (Exception e)
      {
         throw new ServletException("Failed to validate shared-context", e);
View Full Code Here

TOP

Related Classes of org.jboss.test.classloader.scoping.naming.service.BindValue

Copyright © 2018 www.massapicom. 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.