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

biz.aQute.bnd.reporter.maven.dto.ChecksumDTO Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 7.1.0
Show newest version
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; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy