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

com.appium.utils.HostArtifact Maven / Gradle / Ivy

There is a newer version: 14.0.4
Show newest version
package com.appium.utils;

import java.util.Map;

public class HostArtifact {
    private final Map artifactsByType;
    private String host;

    HostArtifact(String host, Map artifactsByType) {
        this.host = host;
        this.artifactsByType = artifactsByType;
    }

    public String getArtifactPath(String type) {
        return artifactsByType.get(type);
    }

    public String getHost() {
        return host;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy