本文整理汇总了Java中org.apache.ivy.core.module.descriptor.Artifact.isMetadata方法的典型用法代码示例。如果您正苦于以下问题:Java Artifact.isMetadata方法的具体用法?Java Artifact.isMetadata怎么用?Java Artifact.isMetadata使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.ivy.core.module.descriptor.Artifact
的用法示例。
在下文中一共展示了Artifact.isMetadata方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: cacheModuleDescriptor
import org.apache.ivy.core.module.descriptor.Artifact; //导入方法依赖的package包/类
public ResolvedModuleRevision cacheModuleDescriptor(DependencyResolver resolver, final ResolvedResource resolvedResource, DependencyDescriptor dd, Artifact moduleArtifact, ResourceDownloader downloader, CacheMetadataOptions options) throws ParseException {
if (!moduleArtifact.isMetadata()) {
return null;
}
ArtifactResourceResolver artifactResourceResolver = new ArtifactResourceResolver() {
public ResolvedResource resolve(Artifact artifact) {
return resolvedResource;
}
};
ArtifactDownloadReport report = download(moduleArtifact, artifactResourceResolver, downloader, new CacheDownloadOptions().setListener(options.getListener()).setForce(true));
if (report.getDownloadStatus() == DownloadStatus.FAILED) {
LOGGER.warn("problem while downloading module descriptor: {}: {} ({} ms)", resolvedResource.getResource(), report.getDownloadDetails(), report.getDownloadTimeMillis());
return null;
}
ModuleDescriptor md = parseModuleDescriptor(resolver, moduleArtifact, options, report.getLocalFile(), resolvedResource.getResource());
LOGGER.debug("\t{}: parsed downloaded md file for {}; parsed={}" + getName(), moduleArtifact.getModuleRevisionId(), md.getModuleRevisionId());
MetadataArtifactDownloadReport madr = new MetadataArtifactDownloadReport(md.getMetadataArtifact());
madr.setSearched(true);
madr.setDownloadStatus(report.getDownloadStatus());
madr.setDownloadDetails(report.getDownloadDetails());
madr.setArtifactOrigin(report.getArtifactOrigin());
madr.setDownloadTimeMillis(report.getDownloadTimeMillis());
madr.setOriginalLocalFile(report.getLocalFile());
madr.setSize(report.getSize());
return new ResolvedModuleRevision(resolver, resolver, md, madr);
}
示例2: exists
import org.apache.ivy.core.module.descriptor.Artifact; //导入方法依赖的package包/类
@Override
public boolean exists(Artifact artifact) {
if (artifact.isMetadata()) {
return ivyResolver.exists(artifact);
} else {
return artifactResolver.exists(artifact);
}
}
示例3: locate
import org.apache.ivy.core.module.descriptor.Artifact; //导入方法依赖的package包/类
@Override
public ArtifactOrigin locate(Artifact artifact) {
if (artifact.isMetadata()) {
return ivyResolver.locate(artifact);
} else {
return artifactResolver.locate(artifact);
}
}
示例4: isOriginalMetadataArtifact
import org.apache.ivy.core.module.descriptor.Artifact; //导入方法依赖的package包/类
private boolean isOriginalMetadataArtifact(Artifact artifact) {
return artifact.isMetadata() && artifact.getType().endsWith(".original");
}