本文整理了Java中org.sonatype.nexus.proxy.repository.Repository.setIndexable
方法的一些代码示例,展示了Repository.setIndexable
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Repository.setIndexable
方法的具体详情如下:
包路径:org.sonatype.nexus.proxy.repository.Repository
类名称: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() );
内容来源于网络,如有侵权,请联系作者删除!