All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.projectnessie.api.v1.params.EntriesParams Maven / Gradle / Ivy

There is a newer version: 0.97.1
Show newest version
/*
 * Copyright (C) 2022 Dremio
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.projectnessie.api.v1.params;

import java.util.Objects;
import java.util.StringJoiner;
import javax.annotation.Nullable;
import javax.validation.constraints.Pattern;
import javax.ws.rs.QueryParam;
import org.eclipse.microprofile.openapi.annotations.media.ExampleObject;
import org.eclipse.microprofile.openapi.annotations.parameters.Parameter;
import org.projectnessie.model.Validation;

/**
 * The purpose of this class is to include optional parameters that can be passed to {@code
 * HttpTreeApi#getEntries(String, EntriesParams)}.
 *
 * 

For easier usage of this class, there is {@link EntriesParams#builder()}, which allows * configuring/setting the different parameters. */ public class EntriesParams extends AbstractParams { @Nullable @jakarta.annotation.Nullable @Pattern( regexp = Validation.HASH_OR_RELATIVE_COMMIT_SPEC_REGEX, message = Validation.HASH_OR_RELATIVE_COMMIT_SPEC_MESSAGE) @jakarta.validation.constraints.Pattern( regexp = Validation.HASH_OR_RELATIVE_COMMIT_SPEC_REGEX, message = Validation.HASH_OR_RELATIVE_COMMIT_SPEC_MESSAGE) @Parameter( description = "a particular hash on the given ref", examples = {@ExampleObject(ref = "nullHash"), @ExampleObject(ref = "hash")}) @QueryParam("hashOnRef") @jakarta.ws.rs.QueryParam("hashOnRef") private String hashOnRef; @Nullable @jakarta.annotation.Nullable @Parameter( description = "If set > 0 will filter the results to only return namespaces/tables to the depth of namespaceDepth. If not set or <=0 has no effect\n" + "Setting this parameter > 0 will turn off paging.") @QueryParam("namespaceDepth") @jakarta.ws.rs.QueryParam("namespaceDepth") private Integer namespaceDepth; @Nullable @jakarta.annotation.Nullable @Parameter( description = "A Common Expression Language (CEL) expression. An intro to CEL can be found at https://github.com/google/cel-spec/blob/master/doc/intro.md.\n" + "Usable variables within the expression are 'entry.namespace' (string) & 'entry.contentType' (string)", examples = { @ExampleObject(ref = "expr_by_namespace"), @ExampleObject(ref = "expr_by_contentType"), @ExampleObject(ref = "expr_by_namespace_and_contentType") }) @QueryParam("filter") @jakarta.ws.rs.QueryParam("filter") private String filter; public EntriesParams() {} @org.immutables.builder.Builder.Constructor EntriesParams( @Nullable @jakarta.annotation.Nullable String hashOnRef, @Nullable @jakarta.annotation.Nullable Integer maxRecords, @Nullable @jakarta.annotation.Nullable String pageToken, @Nullable @jakarta.annotation.Nullable Integer namespaceDepth, @Nullable @jakarta.annotation.Nullable String filter) { super(maxRecords, pageToken); this.hashOnRef = hashOnRef; this.namespaceDepth = namespaceDepth; this.filter = filter; } public static EntriesParamsBuilder builder() { return new EntriesParamsBuilder(); } public static EntriesParams empty() { return builder().build(); } @Nullable @jakarta.annotation.Nullable public String hashOnRef() { return hashOnRef; } @Nullable @jakarta.annotation.Nullable public String filter() { return filter; } @Nullable @jakarta.annotation.Nullable public Integer namespaceDepth() { return namespaceDepth; } @Override public EntriesParams forNextPage(String pageToken) { return new EntriesParams(hashOnRef, maxRecords(), pageToken, namespaceDepth, filter); } @Override public String toString() { return new StringJoiner(", ", EntriesParams.class.getSimpleName() + "[", "]") .add("hashOnRef='" + hashOnRef + "'") .add("maxRecords=" + maxRecords()) .add("pageToken='" + pageToken() + "'") .add("filter='" + filter + "'") .add("namespaceDepth='" + namespaceDepth + "'") .toString(); } @Override public boolean equals(Object o) { if (this == o) { return true; } if (!(o instanceof EntriesParams)) { return false; } EntriesParams that = (EntriesParams) o; return Objects.equals(hashOnRef, that.hashOnRef) && Objects.equals(maxRecords(), that.maxRecords()) && Objects.equals(pageToken(), that.pageToken()) && Objects.equals(namespaceDepth, that.namespaceDepth) && Objects.equals(filter, that.filter); } @Override public int hashCode() { return Objects.hash(hashOnRef, maxRecords(), pageToken(), namespaceDepth, filter); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy