io.camunda.operate.webapp.rest.dto.activity.FlowNodeInstanceRequestDto Maven / Gradle / Ivy
The newest version!
/*
* 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.operate.webapp.rest.dto.activity;
import java.util.Arrays;
import java.util.List;
import java.util.Objects;
/** The request to get several lists of flow node instances. */
public class FlowNodeInstanceRequestDto {
private List queries;
public FlowNodeInstanceRequestDto() {}
public FlowNodeInstanceRequestDto(final List queries) {
this.queries = queries;
}
public FlowNodeInstanceRequestDto(FlowNodeInstanceQueryDto... queries) {
this.queries = Arrays.asList(queries);
}
public List getQueries() {
return queries;
}
public FlowNodeInstanceRequestDto setQueries(final List queries) {
this.queries = queries;
return this;
}
@Override
public int hashCode() {
return Objects.hash(queries);
}
@Override
public boolean equals(final Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
final FlowNodeInstanceRequestDto that = (FlowNodeInstanceRequestDto) o;
return Objects.equals(queries, that.queries);
}
}