com.boozallen.drift.detection.data.AbstractDriftData 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 com.fasterxml.jackson.annotation.JsonProperty;
public class AbstractDriftData implements DriftData {
@JsonProperty
private String name;
@Override
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}