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

org.projectnessie.model.GetMultipleContentsRequest Maven / Gradle / Ivy

There is a newer version: 0.97.1
Show newest version
/*
 * Copyright (C) 2020 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.model;

import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import java.util.List;
import javax.validation.constraints.NotNull;
import javax.validation.constraints.Size;
import org.eclipse.microprofile.openapi.annotations.enums.SchemaType;
import org.eclipse.microprofile.openapi.annotations.media.Schema;
import org.immutables.value.Value;

@Schema(type = SchemaType.OBJECT, title = "GetMultipleContentsRequest")
@Value.Immutable
@JsonSerialize(as = ImmutableGetMultipleContentsRequest.class)
@JsonDeserialize(as = ImmutableGetMultipleContentsRequest.class)
public interface GetMultipleContentsRequest {

  @NotNull
  @jakarta.validation.constraints.NotNull
  @Size
  @jakarta.validation.constraints.Size(min = 1)
  List getRequestedKeys();

  static ImmutableGetMultipleContentsRequest.Builder builder() {
    return ImmutableGetMultipleContentsRequest.builder();
  }

  static GetMultipleContentsRequest of(ContentKey... keys) {
    return builder().addRequestedKeys(keys).build();
  }

  static GetMultipleContentsRequest of(List keys) {
    return builder().addAllRequestedKeys(keys).build();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy