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

io.split.client.LocalhostSplit Maven / Gradle / Ivy

package io.split.client;

public class LocalhostSplit {
    public String treatment;
    public String config;

    public LocalhostSplit(String treatment, String config) {
        this.treatment = treatment;
        this.config = config;
    }

    public static LocalhostSplit of(String treatment) {
        return new LocalhostSplit(treatment, null);
    }

    public static LocalhostSplit of(String treatment, String config) {
        return new LocalhostSplit(treatment, config);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy