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

org.openmetadata.service.search.SearchAggregationNode Maven / Gradle / Ivy

There is a newer version: 1.6.2
Show newest version
package org.openmetadata.service.search;

import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import lombok.Getter;
import lombok.Setter;

@Setter
@Getter
public class SearchAggregationNode {
  String type;
  String name;
  Map value;
  List children = new ArrayList<>();

  public SearchAggregationNode(String type, String name, Map value) {
    this.type = type;
    this.name = name;
    this.value = value;
  }

  public SearchAggregationNode() {
    // Default constructor
  }

  public void addChild(SearchAggregationNode child) {
    children.add(child);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy