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

com.rapid7.container.analyzer.docker.model.image.LayerFile Maven / Gradle / Ivy

There is a newer version: 0.2.26
Show newest version
package com.rapid7.container.analyzer.docker.model.image;

import static java.util.Objects.requireNonNull;

public class LayerFile {

  private FileState state;
  private File file;

  public LayerFile(File file, FileState state) {
    this.state = state;
    this.file = file;
  }

  public FileState getState() {
    return state;
  }

  public File getFile() {
    return file;
  }

  public void setState(FileState state) {
    this.state = requireNonNull(state);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy