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

io.split.client.utils.FeatureFlagsToUpdate Maven / Gradle / Ivy

package io.split.client.utils;

import io.split.engine.experiments.ParsedSplit;

import java.util.List;
import java.util.Set;

public class FeatureFlagsToUpdate {
    List toAdd;
    List toRemove;
    Set segments;

    public FeatureFlagsToUpdate(List toAdd, List toRemove, Set segments) {
        this.toAdd = toAdd;
        this.toRemove = toRemove;
        this.segments = segments;
    }

    public List getToAdd() {
        return toAdd;
    }

    public List getToRemove() {
        return toRemove;
    }

    public Set getSegments() {
        return segments;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy