use of eu.europa.ec.fisheries.ers.service.util.Oracle in project UVMS-ActivityModule-APP by UnionVMS.
the class FluxMessageServiceBean method init.
@PostConstruct
public void init() {
initEntityManager();
faReportDocumentDao = new FaReportDocumentDao(getEntityManager());
fluxReportMessageDao = new FluxFaReportMessageDao(getEntityManager());
dialect = new PostGres();
if ("oracle".equals(properties.getProperty("database.dialect"))) {
dialect = new Oracle();
}
}
Aggregations