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

io.gumga.reports.stimulsoft.GumgaReportService Maven / Gradle / Ivy

There is a newer version: 4.0.4
Show newest version
package io.gumga.reports.stimulsoft;

import io.gumga.application.GumgaService;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import javax.transaction.Transactional;

@Service
@Transactional
public class GumgaReportService extends GumgaService {

    private final static Logger LOG = LoggerFactory.getLogger(GumgaReportService.class);
    private final GumgaReportRepository repository;

    @Autowired
    public GumgaReportService(GumgaReportRepository repository) {
        super(repository);
        this.repository = repository;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy