com.ghunteranderson.nexus.client.PaginatedResponse 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.client;
import java.util.List;
import lombok.Data;
@Data
class PaginatedResponse {
private List items;
private String continuationToken;
}