biz.aQute.bnd.reporter.maven.dto.ChecksumDTO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of biz.aQute.bnd Show documentation
Show all versions of biz.aQute.bnd Show documentation
This command line utility is the Swiss army knife of OSGi. It provides you with a breadth of tools to understand and manage OSGi based systems. This project basically uses bndlib.
package biz.aQute.bnd.reporter.maven.dto;
import org.osgi.dto.DTO;
/**
* A representation of Checksums of an artifact.
*/
public class ChecksumDTO extends DTO {
/**
* The md5 checksum of the artifact.
*
*
*/
public String md5;
/**
* The sha1 checksum of the artifact.
*
*
*/
public String sha1;
/**
* The sha256 checksum of the artifact.
*
*
*/
public String sha256;
/**
* The sha512 checksum of the artifact.
*
*
*/
public String sha512;
}