com.azure.ai.metricsadvisor.implementation.util.MetricAnomalyFeedbackHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-ai-metricsadvisor Show documentation
Show all versions of azure-ai-metricsadvisor Show documentation
This package contains the Microsoft Azure Cognitive Services Metrics Advisor SDK.
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.azure.ai.metricsadvisor.implementation.util;
import com.azure.ai.metricsadvisor.administration.models.AnomalyDetectionConfiguration;
import com.azure.ai.metricsadvisor.models.MetricAnomalyFeedback;
/**
* The helper class to set the non-public properties of an {@link MetricAnomalyFeedback} instance.
*/
public final class MetricAnomalyFeedbackHelper {
private static MetricAnomalyFeedbackAccessor accessor;
private MetricAnomalyFeedbackHelper() {
}
/**
* Type defining the methods to set the non-public properties of an {@link MetricAnomalyFeedback} instance.
*/
public interface MetricAnomalyFeedbackAccessor {
void setDetectionConfiguration(MetricAnomalyFeedback feedback, AnomalyDetectionConfiguration configuration);
}
/**
* The method called from {@link MetricAnomalyFeedback} to set it's accessor.
*
* @param feedbackAccessor The accessor.
*/
public static void setAccessor(final MetricAnomalyFeedbackAccessor feedbackAccessor) {
accessor = feedbackAccessor;
}
static void setDetectionConfiguration(MetricAnomalyFeedback feedback, AnomalyDetectionConfiguration configuration) {
accessor.setDetectionConfiguration(feedback, configuration);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy