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

com.aventstack.extentreports.configuration.Config Maven / Gradle / Ivy

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

public class Config {
    
    String k;
    Object v;

    public void setKey(String k) {
        this.k = k;
    }
    
    public String getKey() {
        return k;
    }
    
    public void setValue(Object v) {
        this.v = v;
    }
    
    public Object getValue() {
        return v;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy