All Downloads are FREE. Search and download functionalities are using the official Maven repository.

aQute.bnd.service.resolve.hook.ResolverHook Maven / Gradle / Ivy

Go to download

A command line utility and Ant plugin to wrap, build, or examine bundles.

The newest version!
package aQute.bnd.service.resolve.hook;

import java.util.*;

import org.osgi.resource.*;

public interface ResolverHook {

    /**
     * Filter matches hook method. This method is called during the resolve process for the specified requirement. The
     * collection of candidates match the specified requirement. This method can filter the collection of matching
     * candidates by removing candidates from the collection. Removing a candidate will prevent the resolve process from
     * choosing the removed candidate to satisfy the requirement.
     * 
     * Implementing classes must be registered as plugins in bnd.
     * 
     * @param requirement
     *            the requirement to filter candidates for
     * @param candidates
     *            a collection of candidates that match the requirement
     */
    void filterMatches(Requirement requirement, List candidates);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy