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

com.applitools.eyes.logging.ClientEvent Maven / Gradle / Ivy

There is a newer version: 5.66.0
Show newest version
package com.applitools.eyes.logging;

public class ClientEvent {
    private final String timestamp;
    private final Object event;
    private final TraceLevel level;

    public ClientEvent(String timestamp, Object event) {
        this(timestamp, event, null);
    }

    public ClientEvent(String timestamp, Object event, TraceLevel level) {
        this.timestamp = timestamp;
        this.event = event;
        this.level = level;
    }

    public String getTimestamp() {
        return timestamp;
    }

    public Object getEvent() {
        return event;
    }

    public TraceLevel getLevel() {
        return level;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy