io.camunda.search.clients.core.SearchQueryResponse Maven / Gradle / Ivy
/*
* Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH under
* one or more contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright ownership.
* Licensed under the Camunda License 1.0. You may not use this file
* except in compliance with the Camunda License 1.0.
*/
package io.camunda.search.clients.core;
import io.camunda.util.ObjectBuilder;
import java.util.Collections;
import java.util.List;
import java.util.Objects;
import java.util.function.Function;
public final record SearchQueryResponse(
long totalHits, String scrollId, List> hits) {
public static SearchQueryResponse of(
final Function, ObjectBuilder>> fn) {
return fn.apply(new Builder()).build();
}
public static final class Builder implements ObjectBuilder> {
private long totalHits;
private String scrollId;
private List> hits;
public Builder totalHits(final long value) {
totalHits = value;
return this;
}
public Builder scrollId(final String value) {
scrollId = value;
return this;
}
public Builder hits(final List> value) {
hits = value;
return this;
}
@Override
public SearchQueryResponse build() {
return new SearchQueryResponse(
totalHits, scrollId, Objects.requireNonNullElse(hits, Collections.emptyList()));
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy