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

org.apache.geode.management.api.EntityInfo Maven / Gradle / Ivy

/*
 * Licensed to the Apache Software Foundation (ASF) under one or more contributor license
 * agreements. See the NOTICE file distributed with this work for additional information regarding
 * copyright ownership. The ASF licenses this file to You 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.apache.geode.management.api;

import static java.util.stream.Collectors.toList;

import java.util.ArrayList;
import java.util.List;
import java.util.Objects;

import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;

import org.apache.geode.management.configuration.AbstractConfiguration;
import org.apache.geode.management.configuration.Links;
import org.apache.geode.management.runtime.RuntimeInfo;

/**
 * This holds the configuration of a particular entity in the cluster. It includes the id of the
 * entity and a list of configuration per group on the cluster
 *
 * @param  the config type
 * @param  the runtimeInfo type
 */
public class EntityInfo, R extends RuntimeInfo> {
  private String id;
  @JsonInclude
  @JsonProperty
  private List> groups = new ArrayList<>();

  public EntityInfo() {}

  public EntityInfo(String id, List> groups) {
    this.id = id;
    this.groups = groups;
  }

  public String getId() {
    return id;
  }

  public void setId(String id) {
    this.id = id;
  }

  public List> getGroups() {
    return groups;
  }

  public void setGroups(List> groups) {
    this.groups = groups;
  }

  @JsonIgnore
  public List getConfigurations() {
    return groups.stream()
        .map(EntityGroupInfo::getConfiguration)
        .collect(toList());
  }

  @JsonIgnore
  public List getRuntimeInfos() {
    return groups.stream()
        .flatMap(r -> r.getRuntimeInfo().stream())
        .collect(toList());
  }

  @JsonProperty(access = JsonProperty.Access.READ_ONLY)
  public Links getLinks() {
    if (groups.isEmpty()) {
      return null;
    }
    return groups.get(0).getLinks();
  }

  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    EntityInfo that = (EntityInfo) o;
    return Objects.equals(id, that.id) &&
        Objects.equals(groups, that.groups);
  }

  @Override
  public int hashCode() {
    return Objects.hash(id, groups);
  }

  @Override
  public String toString() {
    return "ConfigurationInfo{" +
        "id='" + id + '\'' +
        ", groups=" + groups +
        '}';
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy