com.linecorp.centraldogma.internal.Util.validateFilePath()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(6.5k)|赞(0)|评价(0)|浏览(165)

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

Util.validateFilePath介绍

暂无

代码示例

代码示例来源:origin: line/centraldogma

  1. /**
  2. * Sets the path of the file in Central Dogma.
  3. */
  4. public CentralDogmaBeanConfigBuilder path(String path) {
  5. this.path = validateFilePath(path, "path");
  6. return this;
  7. }

代码示例来源:origin: com.linecorp.centraldogma/centraldogma-common

  1. /**
  2. * Creates a new instance.
  3. */
  4. private MergeSource(String path, boolean optional) {
  5. this.path = validateFilePath(path, "path");
  6. this.optional = optional;
  7. }

代码示例来源:origin: com.linecorp.centraldogma/centraldogma-client-shaded

  1. /**
  2. * Sets the path of the file in Central Dogma.
  3. */
  4. public CentralDogmaBeanConfigBuilder path(String path) {
  5. this.path = validateFilePath(path, "path");
  6. return this;
  7. }

代码示例来源:origin: line/centraldogma

  1. /**
  2. * Creates a new instance.
  3. */
  4. private MergeSource(String path, boolean optional) {
  5. this.path = validateFilePath(path, "path");
  6. this.optional = optional;
  7. }

代码示例来源:origin: com.linecorp.centraldogma/centraldogma-client

  1. /**
  2. * Sets the path of the file in Central Dogma.
  3. */
  4. public CentralDogmaBeanConfigBuilder path(String path) {
  5. this.path = validateFilePath(path, "path");
  6. return this;
  7. }

代码示例来源:origin: line/centraldogma

  1. /**
  2. * Returns a newly-created {@link Change} whose type is {@link ChangeType#RENAME}.
  3. *
  4. * @param oldPath the old path of the file
  5. * @param newPath the new path of the file
  6. */
  7. static Change<String> ofRename(String oldPath, String newPath) {
  8. validateFilePath(oldPath, "oldPath");
  9. validateFilePath(newPath, "newPath");
  10. return new DefaultChange<>(oldPath, ChangeType.RENAME, newPath);
  11. }

代码示例来源:origin: com.linecorp.centraldogma/centraldogma-common

  1. /**
  2. * Returns a newly-created {@link Change} whose type is {@link ChangeType#RENAME}.
  3. *
  4. * @param oldPath the old path of the file
  5. * @param newPath the new path of the file
  6. */
  7. static Change<String> ofRename(String oldPath, String newPath) {
  8. validateFilePath(oldPath, "oldPath");
  9. validateFilePath(newPath, "newPath");
  10. return new DefaultChange<>(oldPath, ChangeType.RENAME, newPath);
  11. }

代码示例来源:origin: com.linecorp.centraldogma/centraldogma-common-shaded

  1. /**
  2. * Returns a newly-created {@link Change} whose type is {@link ChangeType#RENAME}.
  3. *
  4. * @param oldPath the old path of the file
  5. * @param newPath the new path of the file
  6. */
  7. static Change<String> ofRename(String oldPath, String newPath) {
  8. validateFilePath(oldPath, "oldPath");
  9. validateFilePath(newPath, "newPath");
  10. return new DefaultChange<>(oldPath, ChangeType.RENAME, newPath);
  11. }

代码示例来源:origin: line/centraldogma

  1. @JsonCreator
  2. IdentityQuery(@JsonProperty("path") String path) {
  3. this.path = validateFilePath(path, "path");
  4. }

代码示例来源:origin: com.linecorp.centraldogma/centraldogma-common

  1. @JsonCreator
  2. IdentityQuery(@JsonProperty("path") String path) {
  3. this.path = validateFilePath(path, "path");
  4. }

代码示例来源:origin: line/centraldogma

  1. /**
  2. * Retrieves an {@link Entry} at the specified {@code path}.
  3. *
  4. * @return the {@link Entry} at the specified {@code path} if exists.
  5. * The specified {@code other} if there's no such {@link Entry}.
  6. *
  7. * @see #get(Revision, String)
  8. */
  9. default CompletableFuture<Entry<?>> getOrNull(Revision revision, String path) {
  10. validateFilePath(path, "path");
  11. return find(revision, path, FIND_ONE_WITH_CONTENT).thenApply(findResult -> findResult.get(path));
  12. }

代码示例来源:origin: com.linecorp.centraldogma/centraldogma-server-shaded

  1. /**
  2. * Returns {@code true} if and only if an {@link Entry} exists at the specified {@code path}.
  3. */
  4. default CompletableFuture<Boolean> exists(Revision revision, String path) {
  5. validateFilePath(path, "path");
  6. return find(revision, path, EXISTS_FIND_OPTIONS).thenApply(result -> !result.isEmpty());
  7. }

代码示例来源:origin: com.linecorp.centraldogma/centraldogma-server

  1. /**
  2. * Retrieves an {@link Entry} at the specified {@code path}.
  3. *
  4. * @return the {@link Entry} at the specified {@code path} if exists.
  5. * The specified {@code other} if there's no such {@link Entry}.
  6. *
  7. * @see #get(Revision, String)
  8. */
  9. default CompletableFuture<Entry<?>> getOrNull(Revision revision, String path) {
  10. validateFilePath(path, "path");
  11. return find(revision, path, FIND_ONE_WITH_CONTENT).thenApply(findResult -> findResult.get(path));
  12. }

代码示例来源:origin: com.linecorp.centraldogma/centraldogma-server-shaded

  1. /**
  2. * Retrieves an {@link Entry} at the specified {@code path}.
  3. *
  4. * @return the {@link Entry} at the specified {@code path} if exists.
  5. * The specified {@code other} if there's no such {@link Entry}.
  6. *
  7. * @see #get(Revision, String)
  8. */
  9. default CompletableFuture<Entry<?>> getOrNull(Revision revision, String path) {
  10. validateFilePath(path, "path");
  11. return find(revision, path, GET_FIND_OPTIONS).thenApply(findResult -> findResult.get(path));
  12. }

代码示例来源:origin: line/centraldogma

  1. /**
  2. * Returns {@code true} if and only if an {@link Entry} exists at the specified {@code path}.
  3. */
  4. default CompletableFuture<Boolean> exists(Revision revision, String path) {
  5. validateFilePath(path, "path");
  6. return find(revision, path, FIND_ONE_WITHOUT_CONTENT).thenApply(result -> !result.isEmpty());
  7. }

代码示例来源:origin: com.linecorp.centraldogma/centraldogma-server

  1. /**
  2. * Returns {@code true} if and only if an {@link Entry} exists at the specified {@code path}.
  3. */
  4. default CompletableFuture<Boolean> exists(Revision revision, String path) {
  5. validateFilePath(path, "path");
  6. return find(revision, path, FIND_ONE_WITHOUT_CONTENT).thenApply(result -> !result.isEmpty());
  7. }

代码示例来源:origin: line/centraldogma

  1. DefaultChange(String path, ChangeType type, @Nullable T content) {
  2. this.type = requireNonNull(type, "type");
  3. if (type.contentType() == JsonNode.class) {
  4. validateJsonFilePath(path, "path");
  5. } else {
  6. validateFilePath(path, "path");
  7. }
  8. this.path = path;
  9. this.content = content;
  10. }

代码示例来源:origin: com.linecorp.centraldogma/centraldogma-common

  1. DefaultChange(String path, ChangeType type, @Nullable T content) {
  2. this.type = requireNonNull(type, "type");
  3. if (type.contentType() == JsonNode.class) {
  4. validateJsonFilePath(path, "path");
  5. } else {
  6. validateFilePath(path, "path");
  7. }
  8. this.path = path;
  9. this.content = content;
  10. }

代码示例来源:origin: com.linecorp.centraldogma/centraldogma-common-shaded

  1. DefaultChange(String path, ChangeType type, @Nullable T content) {
  2. this.type = requireNonNull(type, "type");
  3. if (type.contentType() == JsonNode.class) {
  4. validateJsonFilePath(path, "path");
  5. } else {
  6. validateFilePath(path, "path");
  7. }
  8. this.path = path;
  9. this.content = content;
  10. }

代码示例来源:origin: line/centraldogma

  1. private static void assertFilePathValidationFailure(String path) {
  2. assertThatThrownBy(() -> validateFilePath(path, "path"))
  3. .isExactlyInstanceOf(IllegalArgumentException.class);
  4. }

相关文章