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

com.rapid7.container.analyzer.docker.model.json.FileSystemJson Maven / Gradle / Ivy

There is a newer version: 0.2.26
Show newest version

/**
 *
 */
package com.rapid7.container.analyzer.docker.model.json;

import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
import java.util.StringJoiner;

public class FileSystemJson {

  private String type;
  private List layers;

  @JsonProperty("type")
  public String getType() {
    return type;
  }

  public void setType(String type) {
    this.type = type;
  }

  @JsonProperty("diff_ids")
  public List getLayers() {
    return layers;
  }

  public void setLayers(List layers) {
    this.layers = layers;
  }

  @Override
  public String toString() {
    return new StringJoiner(", ", FileSystemJson.class.getSimpleName() + "[", "]")
        .add("Type=" + type)
        .add("Layers=" + layers)
        .toString();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy