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

com.redhat.insights.reports.AppInsightsSubreport Maven / Gradle / Ivy

There is a newer version: 2.0.4
Show newest version
/* 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