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

com.hubspot.mesos.json.MesosSlaveFrameworkObject Maven / Gradle / Ivy

The newest version!
package com.hubspot.mesos.json;

import java.util.List;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;

public class MesosSlaveFrameworkObject {

  private final List executors;
  private final List completedExecutors;
  private final String id;

  @JsonCreator
  public MesosSlaveFrameworkObject(@JsonProperty("id") String id, @JsonProperty("executors") List executors, @JsonProperty("completed_executors") List completedExecutors) {
    this.id = id;
    this.executors = executors;
    this.completedExecutors = completedExecutors;
  }

  public String getId() {
    return id;
  }

  public List getCompletedExecutors() {
    return completedExecutors;
  }

  public List getExecutors() {
    return executors;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy