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

org.codehaus.plexus.PlexusContainerManager Maven / Gradle / Ivy

Go to download

Statistical sampling library for use in virtdata libraries, based on apache commons math 4

There is a newer version: 5.17.0
Show newest version
/*
 * $Id: PlexusContainerManager.java 1323 2004-12-20 23:00:59Z jvanzyl $
 */

package org.codehaus.plexus;

/**
 * PlexusContainerManager defines the interface for Plexus
 * components that can create and manage Plexus containers. An
 * implementation of this interface will configure and create Plexus
 * containers according to some policy that the component defines;
 * for example, a container factory might create a Plexus container for
 * each JAR file that exists in a given directory.
 *
 * @author Mark Wilkinson
 * @version $Revision: 1323 $
 */
public interface PlexusContainerManager
{
    String ROLE = PlexusContainerManager.class.getName();

    PlexusContainer[] getManagedContainers();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy