org.sonatype.nexus.proxy.repository.Repository.setIndexable()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(0.9k)|赞(0)|评价(0)|浏览(91)

本文整理了Java中org.sonatype.nexus.proxy.repository.Repository.setIndexable方法的一些代码示例,展示了Repository.setIndexable的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Repository.setIndexable方法的具体详情如下:
包路径:org.sonatype.nexus.proxy.repository.Repository
类名称:Repository
方法名:setIndexable

Repository.setIndexable介绍

[英]Sets the indexable property of repository. If true, its content will be indexed by Indexer, otherwise not.
[中]设置存储库的可索引属性。如果为true,其内容将由Indexer索引,否则不会。

代码示例

代码示例来源:origin: org.sonatype.nexus/nexus-app

repository.setIndexable( false );
repository.setSearchable( false );

代码示例来源:origin: org.sonatype.nexus.plugins/nexus-restlet1x-plugin

repository.setIndexable(model.isIndexable());
repository.setSearchable(model.isIndexable());

代码示例来源:origin: org.sonatype.nexus/nexus-rest-api

repository.setIndexable( model.isIndexable() );
repository.setSearchable( model.isIndexable() );

相关文章

微信公众号

最新文章

更多