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

com.boozallen.drift.detection.data.DriftDataInput 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 com.fasterxml.jackson.annotation.JsonProperty;

public class DriftDataInput {
    
    @JsonProperty
    private DriftData input;
    
    @JsonProperty
    private DriftData control;

    public DriftData getInput() {
        return input;
    }

    public void setInput(DriftData input) {
        this.input = input;
    }

    public DriftData getControl() {
        return control;
    }

    public void setControl(DriftData control) {
        this.control = control;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy