com.github.dockerjava.api.model.SearchItem Maven / Gradle / Ivy
package com.github.dockerjava.api.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import java.io.Serializable;
/**
*
* @author Konstantin Pelykh ([email protected])
*
*/
@EqualsAndHashCode
@ToString
public class SearchItem extends DockerObject implements Serializable {
private static final long serialVersionUID = 1L;
@JsonProperty("star_count")
private Integer starCount;
@JsonProperty("is_official")
private Boolean isOfficial;
@JsonProperty("is_trusted")
private Boolean isTrusted;
@JsonProperty("name")
private String name;
@JsonProperty("description")
private String description;
public Integer getStarCount() {
return starCount;
}
public Boolean isOfficial() {
return isOfficial;
}
public Boolean isTrusted() {
return isTrusted;
}
public String getName() {
return name;
}
public String getDescription() {
return description;
}
}