/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIESOR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.aries.application.resolver.noop.impl; import java.util.Collection; import java.util.HashSet; import java.util.Set; import org.apache.aries.application.Content; import org.apache.aries.application.management.AriesApplication; import org.apache.aries.application.management.BundleInfo; import org.apache.aries.application.management.ResolveConstraint; import org.apache.aries.application.management.ResolverException; import org.apache.aries.application.management.spi.resolve.AriesApplicationResolver; import org.apache.aries.application.modelling.ModelledResource; import org.osgi.framework.Version; /** * AriesApplicationManager requires that there be at least one * AriesApplicationResolver service present. This class provides a null * implementation: it simply returns the bundles that it was provided with - * enough to permit the testing of Aries applications that have no external * dependencies. It is not intended to be used in a production environment, as * the implementation of the AriesApplicationResolver just returns the bundles * included in the application irrespective of what is specified in * application.mf. */ public class NoOpResolver implements AriesApplicationResolver { Set<BundleInfo> resolvedBundles = new HashSet<BundleInfo>(); public Set<BundleInfo> resolve(AriesApplication app, ResolveConstraint... constraints) { resolvedBundles.addAll(app.getBundleInfo()); return app.getBundleInfo(); } public BundleInfo getBundleInfo(String bundleSymbolicName, Version bundleVersion) { BundleInfo result = null; for (BundleInfo info : resolvedBundles) { if (info.getSymbolicName().equals(bundleSymbolicName) && info.getVersion().equals(bundleVersion)) { result = info; } } return result; } public Collection<ModelledResource> resolve(String appName, String appVersion, Collection<ModelledResource> byValueBundles, Collection<Content> inputs) throws ResolverException { return byValueBundles; } @Override public Collection<ModelledResource> resolveInIsolation(String appName, String appVersion, Collection<ModelledResource> byValueBundles, Collection<Content> inputs) throws ResolverException { return byValueBundles; } }