Package org.apache.aries.application.resolver.obr.ext

Examples of org.apache.aries.application.resolver.obr.ext.ModelledBundleResource


              ModelledResource modelledResourceForThisMatch = null;
              // OBR may give us back the global capabilities. Typically these do not have a bundle symbolic name - they're a
              // list of packages available in the target runtime environment. If the resource has no symbolic name, we can ignore it
              if (r.getSymbolicName() != null) {
                try {
                  modelledResourceForThisMatch = new ModelledBundleResource (r, modellingManager, modellingHelper);
                } catch (InvalidAttributeException iax) {
                  ResolverException re = new ResolverException("Internal error occurred: " + iax);
                  log.debug(LOG_EXIT, "doResolve", re);
                  throw re;
                }
View Full Code Here

TOP

Related Classes of org.apache.aries.application.resolver.obr.ext.ModelledBundleResource

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.