Search in sources :

Example 1 with VesselTransportMeansDao

use of eu.europa.ec.fisheries.ers.fa.dao.VesselTransportMeansDao in project UVMS-ActivityModule-APP by UnionVMS.

the class FishingTripServiceBean method init.

@PostConstruct
public void init() {
    initEntityManager();
    fishingTripIdentifierDao = new FishingTripIdentifierDao(getEntityManager());
    vesselIdentifierDao = new VesselIdentifierDao(getEntityManager());
    fishingActivityDao = new FishingActivityDao(getEntityManager());
    faReportDocumentDao = new FaReportDocumentDao(getEntityManager());
    faCatchDao = new FaCatchDao(getEntityManager());
    fishingTripDao = new FishingTripDao(getEntityManager());
    vesselTransportMeansDao = new VesselTransportMeansDao(em);
    activityConfigurationDao = new ActivityConfigurationDao(getEntityManager());
}
Also used : FaCatchDao(eu.europa.ec.fisheries.ers.fa.dao.FaCatchDao) VesselIdentifierDao(eu.europa.ec.fisheries.ers.fa.dao.VesselIdentifierDao) FaReportDocumentDao(eu.europa.ec.fisheries.ers.fa.dao.FaReportDocumentDao) FishingTripIdentifierDao(eu.europa.ec.fisheries.ers.fa.dao.FishingTripIdentifierDao) FishingTripDao(eu.europa.ec.fisheries.ers.fa.dao.FishingTripDao) FishingActivityDao(eu.europa.ec.fisheries.ers.fa.dao.FishingActivityDao) VesselTransportMeansDao(eu.europa.ec.fisheries.ers.fa.dao.VesselTransportMeansDao) ActivityConfigurationDao(eu.europa.ec.fisheries.ers.fa.dao.ActivityConfigurationDao) PostConstruct(javax.annotation.PostConstruct)

Aggregations

ActivityConfigurationDao (eu.europa.ec.fisheries.ers.fa.dao.ActivityConfigurationDao)1 FaCatchDao (eu.europa.ec.fisheries.ers.fa.dao.FaCatchDao)1 FaReportDocumentDao (eu.europa.ec.fisheries.ers.fa.dao.FaReportDocumentDao)1 FishingActivityDao (eu.europa.ec.fisheries.ers.fa.dao.FishingActivityDao)1 FishingTripDao (eu.europa.ec.fisheries.ers.fa.dao.FishingTripDao)1 FishingTripIdentifierDao (eu.europa.ec.fisheries.ers.fa.dao.FishingTripIdentifierDao)1 VesselIdentifierDao (eu.europa.ec.fisheries.ers.fa.dao.VesselIdentifierDao)1 VesselTransportMeansDao (eu.europa.ec.fisheries.ers.fa.dao.VesselTransportMeansDao)1 PostConstruct (javax.annotation.PostConstruct)1