io.camunda.service.search.query.FlowNodeInstanceQuery 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.service.search.query;
import io.camunda.service.search.filter.FilterBuilders;
import io.camunda.service.search.filter.FlowNodeInstanceFilter;
import io.camunda.service.search.page.SearchQueryPage;
import io.camunda.service.search.sort.FlowNodeInstanceSort;
import io.camunda.service.search.sort.SortOptionBuilders;
import java.util.Objects;
public record FlowNodeInstanceQuery(
FlowNodeInstanceFilter filter, FlowNodeInstanceSort sort, SearchQueryPage page)
implements TypedSearchQuery {
public static final class Builder extends SearchQueryBase.AbstractQueryBuilder
implements TypedSearchQueryBuilder<
FlowNodeInstanceQuery, Builder, FlowNodeInstanceFilter, FlowNodeInstanceSort> {
private static final FlowNodeInstanceFilter EMPTY_FILTER =
FilterBuilders.flownodeInstance().build();
private static final FlowNodeInstanceSort EMPTY_SORT =
SortOptionBuilders.flownodeInstance().build();
private FlowNodeInstanceFilter filter;
private FlowNodeInstanceSort sort;
@Override
protected Builder self() {
return this;
}
@Override
public Builder filter(final FlowNodeInstanceFilter value) {
filter = value;
return this;
}
@Override
public Builder sort(final FlowNodeInstanceSort value) {
sort = value;
return this;
}
@Override
public FlowNodeInstanceQuery build() {
filter = Objects.requireNonNullElse(filter, EMPTY_FILTER);
sort = Objects.requireNonNullElse(sort, EMPTY_SORT);
return new FlowNodeInstanceQuery(filter, sort, page());
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy