Class IvyNodeUsage
java.lang.Object
org.apache.ivy.core.resolve.IvyNodeUsage
Class collecting usage data for an IvyNode.
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
Constructors -
Method Summary
Modifier and TypeMethodDescriptionaddAndGetConfigurations(String rootModuleConf) voidaddUsage(String rootModuleConf, DependencyDescriptor dd, String parentConf) protected voidblacklist(IvyNodeBlacklist bdata) protected IvyNodeBlacklistgetBlacklistData(String rootModuleConf) Returns the blacklist data of this node in the given root module conf, ornullif this node is not blacklisted in this root module conf.getConfigurations(String rootModuleConf) Returns the configurations of the dependency required in a given root module configuration.protected Set<DependencyArtifactDescriptor> getDependencyArtifactsSet(String rootModuleConf) protected Set<IncludeRule> getDependencyIncludesSet(String rootModuleConf) protected IvyNodegetNode()protected Collection<String> getRequiredConfigurations(IvyNode in, String inConf) booleanhasTransitiveDepender(String rootModuleConf) Indicates if at least one depender has a transitive dependency descriptor for the given root module conf.protected booleanisBlacklisted(String rootModuleConf) Indicates if this node has been blacklisted in the given root module conf.protected voidremoveRootModuleConf(String rootModuleConf) protected voidsetRequiredConfs(IvyNode parent, String parentConf, Collection<String> confs) voidupdateDataFrom(Collection<IvyNodeUsage> usages, String rootModuleConf)
-
Constructor Details
-
IvyNodeUsage
-
-
Method Details
-
getRequiredConfigurations
-
setRequiredConfs
-
getConfigurations
-
addAndGetConfigurations
-
getRootModuleConfigurations
-
updateDataFrom
-
addUsage
-
getDependencyArtifactsSet
-
getDependencyIncludesSet
-
removeRootModuleConf
-
blacklist
-
isBlacklisted
Indicates if this node has been blacklisted in the given root module conf.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:
-
getBlacklistData
Returns the blacklist data of this node in the given root module conf, ornullif this node is not blacklisted in this root module conf.- Parameters:
rootModuleConf- the root module configuration to consider- Returns:
- the blacklist data if any
-
getNode
-
hasTransitiveDepender
Indicates if at least one depender has a transitive dependency descriptor for the given root module conf.- Parameters:
rootModuleConf- the root module conf to consider- Returns:
trueif at least one depender has a transitive dependency descriptor for the given root module conf,falseotherwise.
-