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

com.boozallen.drift.detection.data.DriftVariables Maven / Gradle / Ivy

Go to download

The drift detection domain contains the domain objects representing what's needed to use drift detection

There is a newer version: 1.10.0
Show newest version
package com.boozallen.drift.detection.data;

/*-
 * #%L
 * Drift Detection::Domain
 * %%
 * Copyright (C) 2021 Booz Allen
 * %%
 * This software package is licensed under the Booz Allen Public License. All Rights Reserved.
 * #L%
 */

import java.util.List;

import com.fasterxml.jackson.annotation.JsonProperty;

public class DriftVariables extends AbstractDriftData {

    @JsonProperty
    private List> variables;

    public DriftVariables() {
        super();
    }

    public DriftVariables(List> variables) {
        this.variables = variables;
    }

    public List> getVariables() {
        return variables;
    }

    public void setVariables(List> variables) {
        this.variables = variables;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy