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

tech.grasshopper.combiner.pojo.Log Maven / Gradle / Ivy

The newest version!
package tech.grasshopper.combiner.pojo;

import java.util.Date;
import java.util.HashMap;
import java.util.Map;

import com.aventstack.extentreports.Status;

import lombok.Data;

@Data
public class Log {

	private Date timestamp;
	private Status status = Status.PASS;
	private String details;
	private Integer seq = -1;
	private final Map infoMap = new HashMap<>();
	private Media media;
	private ExceptionInfo exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy