All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.hawt.log.rest.LogResponseHit Maven / Gradle / Ivy

There is a newer version: 4.2.0
Show newest version
package io.hawt.log.rest;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.hawt.log.LogEvent;

@JsonIgnoreProperties(ignoreUnknown = true)
public class LogResponseHit {

    @JsonProperty("_source")
    private LogEvent event;

    public LogResponseHit() {
    }

    public LogEvent getEvent() {
        return event;
    }

    public void setEvent(LogEvent event) {
        this.event = event;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy