
org.codehaus.plexus.component.repository.ComponentSetDescriptor Maven / Gradle / Ivy
package org.codehaus.plexus.component.repository;
/*
* Copyright 2001-2006 Codehaus Foundation.
*
* Licensed 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 WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import java.util.ArrayList;
import java.util.List;
/**
* Contains a set of ComponentDescriptors and the set's dependencies.
*
* @author Jason van Zyl
* @author Trygve Laugstøl
* @version $Id$
*/
public class ComponentSetDescriptor
{
// This field is not currently used in Maven, or Plexus
private String id;
/** The source location of this component source descriptor */
private String source;
/** Flag to indicate whether this component should be loaded in a realm/classloader of its own. */
private boolean isolatedRealm;
/** The component descriptors that can be found within this component set descriptor. */
private final List> components = new ArrayList>();
/** The dependencies that are required by the set of components found in this component set descriptor. */
private final List dependencies = new ArrayList();
/**
* Returns a list of components in this set.
* @return a list of components
*/
public List> getComponents()
{
return components;
}
/**
* Add a new ComponentDescriptor to this set.
* @param cd the ComponentDescriptor to add
*/
public void addComponentDescriptor( ComponentDescriptor> cd )
{
components.add( cd );
}
/**
* Sets a List of components as this set's contents.
* @param components the List of components to set
*/
public void setComponents( List> components )
{
this.components.clear();
this.components.addAll(components);
}
/**
* Returns a List of dependencies of this set of components.
* @return a List of dependencies of this set of components
*/
public List getDependencies()
{
return dependencies;
}
/**
* Add a depenency to this set's contents.
* @param cd the ComponentDependency to add
*/
public void addDependency( ComponentDependency cd )
{
dependencies.add( cd );
}
/**
* Sets a List of dependencies as this set's component dependencies.
* @param dependencies the List of components to set
*/
public void setDependencies( List dependencies )
{
this.dependencies.clear();
this.dependencies.addAll(dependencies);
}
/**
* Sets that this set of components may be in an isolated classrealm.
* @param isolatedRealm true if this set of components may be in an
* isolated classrealm
*/
public void setIsolatedRealm( boolean isolatedRealm )
{
this.isolatedRealm = isolatedRealm;
}
/**
* Returns true if this set may be in an isolated classrealm.
* @return true if this set may be in an isolated classrealm
*/
public boolean isIsolatedRealm()
{
return isolatedRealm;
}
/**
* Returns the identifier of this set.
* @return the identifier of this set
*/
public String getId()
{
return id;
}
/**
* Sets the identifier of this set.
* @param id the identifier to set
*/
public void setId( String id )
{
this.id = id;
}
public String toString()
{
StringBuilder sb = new StringBuilder();
sb.append( "Component Descriptor: " );
for ( ComponentDescriptor> cd : components )
{
sb.append( cd.getHumanReadableKey() ).append( "\n" );
}
sb.append( "---" );
return sb.toString();
}
public String getSource()
{
return source;
}
public void setSource( String source )
{
this.source = source;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy