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

technology.dice.dicewhere.downloader.files.FileInfo Maven / Gradle / Ivy

The newest version!
package technology.dice.dicewhere.downloader.files;

import java.net.URI;
import java.time.Instant;
import technology.dice.dicewhere.downloader.md5.MD5Checksum;

public interface FileInfo {
  MD5Checksum getMd5Checksum();

  URI getUri();

  long getSize();

  String getFileName();

  Instant getTimestamp();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy