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

dev.galasa.framework.spi.Api Maven / Gradle / Ivy

There is a newer version: 0.37.0
Show newest version
/*
 * Copyright contributors to the Galasa project
 *
 * SPDX-License-Identifier: EPL-2.0
 */
package dev.galasa.framework.spi;

public enum Api {
    AUTHENTICATION("auth", "authentication"),
    TESTCATALOG("testcatalog", "testcatalog"),
    RUN("run", "run");

    private final String suffix;
    private final String property;

    private Api(String suffix, String property) {
        this.suffix = suffix;
        this.property = property;
    }

    public String getSuffix() {
        return suffix;
    }

    public String getProperty() {
        return property;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy