com.ghunteranderson.nexus.model.StatusDetails 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 java.util.Date;
import lombok.Data;
@Data
public class StatusDetails {
private boolean healthy;
private String message;
private String error;
private String details;
private Date time;
private int duration;
private String timestamp;
}