use of eu.europa.ec.fisheries.ers.fa.utils.FluxLocationCatchTypeEnum in project UVMS-ActivityModule-APP by UnionVMS.
the class FluxLocationMapperTest method getFluxLocationEntityMock.
private FluxLocationEntity getFluxLocationEntityMock() {
FLUXLocation fluxLocation = MapperUtil.getFluxLocation();
FluxLocationCatchTypeEnum fluxLocationTypeEnum = FluxLocationCatchTypeEnum.FA_CATCH_SPECIFIED;
FluxLocationEntity fluxLocationEntity = FluxLocationMapper.INSTANCE.mapToFluxLocationEntity(fluxLocation);
fluxLocationEntity.setFluxLocationType(fluxLocationTypeEnum.getType());
return fluxLocationEntity;
}
Aggregations