io.hawt.log.rest.LogResponseHits Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hawtio-insight-log Show documentation
Show all versions of hawtio-insight-log Show documentation
hawtio :: hawtio-insight-log
package io.hawt.log.rest;
import java.util.ArrayList;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
@JsonIgnoreProperties(ignoreUnknown=true)
public class LogResponseHits {
private List hits = new ArrayList();
@JsonCreator
public LogResponseHits(@JsonProperty("hits") List hits) {
this.hits = hits;
}
public List getHits() {
return hits;
}
public void setHits(List hits) {
this.hits = hits;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy