本文整理了Java中org.sonatype.nexus.proxy.repository.Repository.setSearchable
方法的一些代码示例,展示了Repository.setSearchable
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Repository.setSearchable
方法的具体详情如下:
包路径:org.sonatype.nexus.proxy.repository.Repository
类名称:Repository
方法名:setSearchable
[英]Sets the searchable property of repository. If true, its content will be searched by Indexer (when doing "global", non targeted searches), otherwise not.
[中]设置存储库的可搜索属性。如果为true,索引器将搜索其内容(在执行“全局”非目标搜索时),否则不会。
代码示例来源:origin: org.sonatype.nexus/nexus-app
repository.setSearchable( false );
代码示例来源:origin: org.sonatype.nexus.plugins/nexus-restlet1x-plugin
repository.setSearchable(model.isIndexable());
代码示例来源:origin: org.sonatype.nexus/nexus-rest-api
repository.setSearchable( model.isIndexable() );
内容来源于网络,如有侵权,请联系作者删除!