org.sonatype.nexus.repository.storage.Query.builder()方法的使用及代码示例

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

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

Query.builder介绍

[英]Helper for creating query builder.
[中]帮助创建查询生成器。

代码示例

代码示例来源:origin: sonatype-nexus-community/nexus-repository-composer

  1. @Nullable
  2. private Component findComponent(final StorageTx tx, final String group, final String name, final String version) {
  3. Iterable<Component> components = tx.findComponents(Query.builder()
  4. .where(P_GROUP).eq(group)
  5. .and(P_NAME).eq(name)
  6. .and(P_VERSION).eq(version)
  7. .build(),
  8. singletonList(getRepository()));
  9. if (components.iterator().hasNext()) {
  10. return components.iterator().next();
  11. }
  12. return null;
  13. }

代码示例来源:origin: sonatype-nexus-community/nexus-repository-helm

  1. /**
  2. * Find assets for Helm components (charts)
  3. *
  4. * @return found assets or null if not found
  5. */
  6. @Nullable
  7. public Iterable<Asset> browseComponentAssets(final StorageTx tx,
  8. final Bucket bucket)
  9. {
  10. Builder builder = builder()
  11. .where(P_COMPONENT).isNotNull();
  12. Query query = builder.build();
  13. return tx.browseAssets(query, bucket);
  14. }

代码示例来源:origin: sonatype-nexus-community/nexus-repository-helm

  1. /**
  2. * Find a component by its name and tag (version)
  3. *
  4. * @return found component or null if not found
  5. */
  6. @Nullable
  7. public Component findComponent(final StorageTx tx,
  8. final Repository repository,
  9. final String name,
  10. final String version)
  11. {
  12. Iterable<Component> components = tx.findComponents(
  13. Query.builder()
  14. .where(P_NAME).eq(name)
  15. .and(P_VERSION).eq(version)
  16. .build(),
  17. singletonList(repository)
  18. );
  19. if (components.iterator().hasNext()) {
  20. return components.iterator().next();
  21. }
  22. return null;
  23. }

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

  1. storageTx.begin();
  2. Query.Builder query = Query.builder()
  3. .where(GROUP).eq(group)
  4. .and(NAME).eq(name)

代码示例来源:origin: sonatype-nexus-community/nexus-repository-composer

  1. @VisibleForTesting
  2. protected Query buildQuery(final String vendor, final String project) {
  3. return Query.builder().where(P_GROUP).eq(vendor).and(P_NAME).eq(project).build();
  4. }

代码示例来源:origin: org.sonatype.nexus.plugins/nexus-repository-npm

  1. /**
  2. * Builds query builder for {@link Component} based on passed in {@link NpmPackageId}.
  3. */
  4. @Nonnull
  5. private static Query.Builder query(final NpmPackageId packageId) {
  6. if (packageId.scope() != null) {
  7. return Query.builder().where(P_NAME).eq(packageId.name()).and(P_GROUP).eq(packageId.scope());
  8. }
  9. else {
  10. return Query.builder().where(P_NAME).eq(packageId.name()).and(P_GROUP).isNull();
  11. }
  12. }

代码示例来源:origin: org.sonatype.nexus.plugins/nexus-repository-maven

  1. /**
  2. * Finds component in given repository by maven path.
  3. */
  4. @Nullable
  5. public static Component findComponent(final StorageTx tx,
  6. final Repository repository,
  7. final MavenPath mavenPath)
  8. {
  9. final Coordinates coordinates = mavenPath.getCoordinates();
  10. final Iterable<Component> components = tx.findComponents(
  11. Query.builder()
  12. .where(P_GROUP).eq(coordinates.getGroupId())
  13. .and(P_NAME).eq(coordinates.getArtifactId())
  14. .and(P_VERSION).eq(coordinates.getVersion())
  15. .build(),
  16. singletonList(repository)
  17. );
  18. if (components.iterator().hasNext()) {
  19. return components.iterator().next();
  20. }
  21. return null;
  22. }

代码示例来源:origin: org.sonatype.nexus.plugins/nexus-repository-maven

  1. long totalComponents = tx.countComponents(Query.builder().build(), singletonList(repo));
  2. log.info("Found {} total components in repository {} to evaluate for unused snapshots", totalComponents,
  3. repo.getName());

代码示例来源:origin: org.sonatype.nexus.plugins/nexus-repository-maven

  1. Query query = builder()
  2. .where(P_GROUP).eq(groupId)
  3. .and(P_NAME).eq(artifactId)

相关文章

Query类方法