com.applitools.eyes.logging.ClientEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eyes-common-java5 Show documentation
Show all versions of eyes-common-java5 Show documentation
Common code for Applitools Eyes Java SDK projects
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