com.boozallen.drift.detection.data.DriftVariables Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of foundation-drift-detection-core-java Show documentation
Show all versions of foundation-drift-detection-core-java Show documentation
The drift detection domain contains the domain objects representing what's needed to use drift detection
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;
}
}