com.ghunteranderson.nexus.model.Task 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 Task {
private String id;
private String name;
private String type;
private String message;
private String currentState;
private String lastRunResult;
private String nextRun;
private String lastRun;
}