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

com.aventstack.extentreports.model.SystemEnvInfo Maven / Gradle / Ivy

There is a newer version: 5.1.2
Show newest version
package com.aventstack.extentreports.model;

import java.io.Serializable;

import lombok.Getter;
import lombok.Setter;
import lombok.ToString;

@Getter
@Setter
@ToString(callSuper = true, includeFieldNames = true)
public class SystemEnvInfo extends NameValuePair implements Serializable, BaseEntity {
    private static final long serialVersionUID = 8643409194315531097L;

    public SystemEnvInfo(String name, String value) {
        super(name, value);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy