com.ghunteranderson.nexus.model.Checksum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-client Show documentation
Show all versions of rest-client Show documentation
A Java REST client for Nexus repository.
The newest version!
package com.ghunteranderson.nexus.model;
import lombok.Data;
@Data
public class Checksum {
private String sha1;
private String md5;
private String sha512;
private String sha256;
}