org.apache.ivy.core.resolve
public class IvyNodeUsage extends Object
Usage data contains the configurations required by callers for each root module configuration, the configurations required by caller node and caller configuration, dependency artifacts descriptors declared by callers, include rules declared by callers, and blacklisted data by root module conf.
Constructor Summary | |
---|---|
IvyNodeUsage(IvyNode node) |
Method Summary | |
---|---|
protected Set | addAndGetConfigurations(String rootModuleConf) |
void | addUsage(String rootModuleConf, DependencyDescriptor dd, String parentConf) |
protected void | blacklist(IvyNodeBlacklist bdata) |
protected IvyNodeBlacklist | getBlacklistData(String rootModuleConf)
Returns the blacklist data of this node in the given root module conf, or null
if this node is not blacklisted in this root module conf.
|
protected Set | getConfigurations(String rootModuleConf)
Returns the configurations of the dependency required in a given root module configuration.
|
protected Set | getDependencyArtifactsSet(String rootModuleConf) |
protected Set | getDependencyIncludesSet(String rootModuleConf) |
protected IvyNode | getNode() |
protected Collection | getRequiredConfigurations(IvyNode in, String inConf) |
protected Set | getRootModuleConfigurations() |
boolean | hasTransitiveDepender(String rootModuleConf)
Indicates if at least one depender has a transitive dependency descriptor for the given root
module conf.
|
protected boolean | isBlacklisted(String rootModuleConf)
Indicates if this node has been blacklisted in the given root module conf.
|
protected void | removeRootModuleConf(String rootModuleConf) |
protected void | setRequiredConfs(IvyNode parent, String parentConf, Collection confs) |
void | updateDataFrom(Collection usages, String rootModuleConf) |
null
if this node is not blacklisted in this root module conf.
Parameters: rootModuleConf the root module configuration to consider
Returns: the blacklist data if any
Parameters: rootModuleConf
Returns:
Parameters: rootModuleConf the root module conf to consider
Returns: true
if at least one depender has a transitive dependency descriptor for
the given root module conf, false
otherwise.
A blacklisted node should be considered as if it doesn't even exist on the repository.
Parameters: rootModuleConf the root module conf for which we'd like to know if the node is blacklisted
Returns: true if this node is blacklisted int he given root module conf, false otherwise
See Also: IvyNodeUsage