Package org.jboss.dependency.plugins.graph

Examples of org.jboss.dependency.plugins.graph.ScopeKeySearchInfo


      if (deployment != null)
         scopeKey.addScope(CommonLevels.DEPLOYMENT, deployment);
      if (id > 0)
         scopeKey.addScope(CommonLevels.INSTANCE, "id-" + id);

      SearchInfo searchInfo = new ScopeKeySearchInfo(scopeKey);
      GraphController gc = (GraphController)getController();
      ControllerContext lookup = gc.getContext("bean", null, searchInfo);
      assertSame(context, lookup);

      return context;
View Full Code Here


   }

   protected SearchInfo getSearchInfo()
   {
      if (searchInfo == null)
         searchInfo = new ScopeKeySearchInfo(scopeKey);

      return searchInfo;
   }
View Full Code Here

TOP

Related Classes of org.jboss.dependency.plugins.graph.ScopeKeySearchInfo

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.