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

com.relevantcodes.extentreports.SystemInfo Maven / Gradle / Ivy

/*
* Copyright (c) 2015, Anshoo Arora (Relevant Codes).  All rights reserved.
* 
* Copyrights licensed under the New BSD License.
* 
* See the accompanying LICENSE file for terms.
*/

package com.relevantcodes.extentreports;

import java.net.InetAddress;
import java.util.Map;

import com.relevantcodes.extentreports.model.SystemProperties;

class SystemInfo {
    private SystemProperties systemProperties;

    public Map getInfo() {
        if (systemProperties == null) {
            return null;
        }
        
        return systemProperties.getSystemInfo();
    }
    
    public void setInfo(Map info) {
        systemProperties.setSystemInfo(info);
    }
    
    public void setInfo(String param, String value) {
        systemProperties.setSystemInfo(param, value);
    }
    
    private void setInfo() {
        if (systemProperties == null) {
            systemProperties = new SystemProperties();
        }
        
        systemProperties.setSystemInfo("User Name", System.getProperty("user.name"));
        systemProperties.setSystemInfo("OS", System.getProperty("os.name"));
        systemProperties.setSystemInfo("Java Version", System.getProperty("java.version"));
        
        try {
            systemProperties.setSystemInfo("Host Name", InetAddress.getLocalHost().getHostName());
        } 
        catch(Exception e) { }
    }
    
    public SystemInfo() { 
        setInfo();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy