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

com.spotify.docker.client.messages.TopResults Maven / Gradle / Ivy

There is a newer version: 8.16.0
Show newest version
/*-
 * -\-\-
 * docker-client
 * --
 * Copyright (C) 2016 Spotify AB
 * Copyright (c) 2014 Oleg Poleshuk
 * Copyright (c) 2014 CyDesign Ltd
 * --
 * Licensed 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 com.spotify.docker.client.messages;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.google.common.base.MoreObjects;
import com.google.common.base.Objects;

import java.util.List;

/**
 * Raw results from the "top" (or "ps") command for a specific container.
 */
public class TopResults {

  @JsonProperty("Titles")
  private List titles;
  @JsonProperty("Processes")
  private List> processes;

  public List titles() {
    return titles;
  }

  public List> processes() {
    return processes;
  }

  @Override
  public boolean equals(final Object obj) {
    if (this == obj) {
      return true;
    }
    if (obj == null || getClass() != obj.getClass()) {
      return false;
    }

    final TopResults that = (TopResults) obj;

    return Objects.equal(this.titles, that.titles)
           && Objects.equal(this.processes, that.processes);
  }

  @Override
  public int hashCode() {
    return Objects.hashCode(titles, processes);
  }

  @Override
  public String toString() {
    return MoreObjects.toStringHelper(this)
        .add("titles", titles)
        .add("processes", processes)
        .toString();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy