com.redhat.insights.reports.AppInsightsSubreport Maven / Gradle / Ivy
/* Copyright (C) Red Hat 2022-2023 */
package com.redhat.insights.reports;
import com.fasterxml.jackson.databind.JsonSerializer;
/** A generic Java application {@link InsightsSubreport} implementation. */
public final class AppInsightsSubreport implements InsightsSubreport {
@Override
public void generateReport() {}
@Override
public String getVersion() {
return "1.0.0";
}
@Override
public JsonSerializer getSerializer() {
return new AppInsightsReportSerializer();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy