use of un.unece.uncefact.data.standard.reusableaggregatebusinessinformationentity._20.FLUXLocation in project UVMS-ActivityModule-APP by UnionVMS.
the class GearProblemMapper method mapToFluxLocations.
protected Set<FluxLocationEntity> mapToFluxLocations(List<FLUXLocation> flLocList, GearProblemEntity gearProbEntity) {
if (CollectionUtils.isEmpty(flLocList)) {
return Collections.emptySet();
}
Set<FluxLocationEntity> entitiesSet = new HashSet<>();
for (FLUXLocation flLocAct : flLocList) {
FluxLocationEntity fluxLocationEntity = FluxLocationMapper.INSTANCE.mapToFluxLocationEntity(flLocAct);
fluxLocationEntity.setFluxLocationType(FluxLocationCatchTypeEnum.GEAR_PROBLEM.getType());
fluxLocationEntity.setGearProblem(gearProbEntity);
FluxLocationMapper.INSTANCE.mapToFluxLocationEntity(flLocAct);
entitiesSet.add(FluxLocationMapper.INSTANCE.mapToFluxLocationEntity(flLocAct));
}
return entitiesSet;
}
use of un.unece.uncefact.data.standard.reusableaggregatebusinessinformationentity._20.FLUXLocation in project UVMS-ActivityModule-APP by UnionVMS.
the class MapperUtil method getGearCharacteristics.
public static GearCharacteristic getGearCharacteristics() {
CodeType typeCode = getCodeType("Code 1", "57t3yf-ght43yrf-ght56yru-ght7565h");
List<TextType> descriptions = Arrays.asList(getTextType("This is sample text"));
MeasureType valueMeasure = getMeasureType(123, "C62", "57t3yf-ght43yrf-ght56yru-ght7565h");
DateTimeType valueDateTime = getDateTimeType("2016-07-01 11:15:00");
IndicatorType valueIndicator = getIndicatorType(true, "Test value", "Test format");
CodeType valueCode = getCodeType("Code type 1", "4fhry5-thfyr85-67thf-5htr84");
TextType value = getTextType("This is sample Text");
QuantityType valueQuantity = getQuantityType(123);
List<FLUXLocation> specifiedFluxLocations = Arrays.asList(getFluxLocation());
GearCharacteristic gearCharacteristic = new GearCharacteristic(typeCode, descriptions, valueMeasure, valueDateTime, valueIndicator, valueCode, value, valueQuantity, specifiedFluxLocations);
return gearCharacteristic;
}
use of un.unece.uncefact.data.standard.reusableaggregatebusinessinformationentity._20.FLUXLocation in project UVMS-ActivityModule-APP by UnionVMS.
the class MapperUtil method getFluxLocation.
public static FLUXLocation getFluxLocation() {
FLUXLocation fluxLocation = new FLUXLocation();
CodeType typeCode = getCodeType("AREA", "FLUX_LOCATION_TYPE");
IDType countryID = getIdType("XEU", "TERRITORY");
CodeType regionalFisheriesManagementOrganizationCode = getCodeType("RFMO1", "fhty58-gh586t-5tjf8-t58rjewe");
FLUXGeographicalCoordinate specifiedPhysicalFLUXGeographicalCoordinate = getFluxGeographicalCoordinate();
IDType id = getIdType("25.5b", "FAO_AREA");
CodeType geopoliticalRegionCode = getCodeType("Code type 2", "fhty258-g3h586t-5t4jf8-t58rjew5e");
List<TextType> names = Arrays.asList(getTextType("This is sample name"));
IDType sovereignRightsCountryID = getIdType("sovereign rights id 1", "fhty58-gh5486t-5t5jf8-t58rjewe");
IDType jurisdictionCountryID = getIdType("jurisdiction country id 1", "fht1y58-gh5876t-5t3jf8-t58rjewe");
List<FLUXCharacteristic> applicableFLUXCharacteristics = null;
List<StructuredAddress> postalStructuredAddresses = Arrays.asList(getStructuredAddress());
StructuredAddress physicalStructuredAddress = getStructuredAddress();
fluxLocation.setTypeCode(typeCode);
fluxLocation.setCountryID(countryID);
fluxLocation.setRegionalFisheriesManagementOrganizationCode(regionalFisheriesManagementOrganizationCode);
fluxLocation.setSpecifiedPhysicalFLUXGeographicalCoordinate(specifiedPhysicalFLUXGeographicalCoordinate);
fluxLocation.setID(id);
fluxLocation.setGeopoliticalRegionCode(geopoliticalRegionCode);
fluxLocation.setNames(names);
fluxLocation.setSovereignRightsCountryID(sovereignRightsCountryID);
fluxLocation.setJurisdictionCountryID(jurisdictionCountryID);
fluxLocation.setApplicableFLUXCharacteristics(applicableFLUXCharacteristics);
fluxLocation.setPostalStructuredAddresses(postalStructuredAddresses);
fluxLocation.setPhysicalStructuredAddress(physicalStructuredAddress);
return fluxLocation;
}
use of un.unece.uncefact.data.standard.reusableaggregatebusinessinformationentity._20.FLUXLocation in project UVMS-ActivityModule-APP by UnionVMS.
the class FluxLocationMapperTest method testFluxLocationMapper.
@Test
public void testFluxLocationMapper() {
FLUXLocation fluxLocation = MapperUtil.getFluxLocation();
FluxLocationEntity fluxLocationEntity = FluxLocationMapper.INSTANCE.mapToFluxLocationEntity(fluxLocation);
assertEquals(fluxLocation.getTypeCode().getListID(), fluxLocationEntity.getTypeCodeListId());
assertEquals(fluxLocation.getTypeCode().getValue(), fluxLocationEntity.getTypeCode());
assertEquals(fluxLocation.getCountryID().getValue(), fluxLocationEntity.getCountryId());
assertEquals(fluxLocation.getCountryID().getSchemeID(), fluxLocationEntity.getCountryIdSchemeId());
assertEquals(fluxLocation.getRegionalFisheriesManagementOrganizationCode().getValue(), fluxLocationEntity.getRfmoCode());
assertEquals(fluxLocation.getSpecifiedPhysicalFLUXGeographicalCoordinate().getLongitudeMeasure().getValue().intValue(), fluxLocationEntity.getLongitude().intValue());
assertEquals(fluxLocation.getSpecifiedPhysicalFLUXGeographicalCoordinate().getLatitudeMeasure().getValue().intValue(), fluxLocationEntity.getLatitude().intValue());
assertEquals(fluxLocation.getSpecifiedPhysicalFLUXGeographicalCoordinate().getAltitudeMeasure().getValue().intValue(), fluxLocationEntity.getAltitude().intValue());
assertEquals(fluxLocation.getSpecifiedPhysicalFLUXGeographicalCoordinate().getSystemID().getValue(), fluxLocationEntity.getSystemId());
assertEquals(fluxLocation.getID().getValue(), fluxLocationEntity.getFluxLocationIdentifier());
assertEquals(fluxLocation.getID().getSchemeID(), fluxLocationEntity.getFluxLocationIdentifierSchemeId());
assertEquals(fluxLocation.getGeopoliticalRegionCode().getValue(), fluxLocationEntity.getGeopoliticalRegionCode());
assertEquals(fluxLocation.getGeopoliticalRegionCode().getListID(), fluxLocationEntity.getGeopoliticalRegionCodeListId());
assertTrue(fluxLocationEntity.getName().startsWith(fluxLocation.getNames().get(0).getValue()));
assertEquals(fluxLocation.getSovereignRightsCountryID().getValue(), fluxLocationEntity.getSovereignRightsCountryCode());
assertEquals(fluxLocation.getJurisdictionCountryID().getValue(), fluxLocationEntity.getJurisdictionCountryCode());
assertNull(fluxLocationEntity.getFishingActivity());
}
use of un.unece.uncefact.data.standard.reusableaggregatebusinessinformationentity._20.FLUXLocation in project UVMS-ActivityModule-APP by UnionVMS.
the class MapperUtil method getFaCatch.
public static FACatch getFaCatch() {
CodeType speciesCode = getCodeType("ONBOARD", "FAO_SPECIES");
QuantityType unitQuantity = getQuantityType(100);
MeasureType weightMeasure = getMeasureType(123, "C62", "586jhg-5htuf95-5jfit-5jtier8");
CodeType weighingMeansCode = getCodeType("Weighing means code 1", "5854tt5-gjtdir-5j85tui-589git");
CodeType usageCode = getCodeType("Usage code 1", "58thft-58fjd8-gt85eje-hjgute8");
CodeType typeCode = getCodeType("Type code 1", "FA_CATCH_TYPE");
final List<FishingTrip> relatedFishingTrips = Arrays.asList(getFishingTrip());
SizeDistribution specifiedSizeDistribution = getSizeDistribution();
List<AAPStock> relatedAAPStocks = Arrays.asList(getAapStock());
List<AAPProcess> appliedAAPProcesses = Arrays.asList(getAapProcess());
List<SalesBatch> relatedSalesBatches = null;
List<FLUXLocation> specifiedFLUXLocations = Arrays.asList(getFluxLocation());
List<FishingGear> usedFishingGears = Arrays.asList(getFishingGear());
List<FLUXCharacteristic> applicableFLUXCharacteristics = Arrays.asList(getFluxCharacteristics());
List<FLUXLocation> destinationFLUXLocations = Arrays.asList(getFluxLocation());
FACatch faCatch = new FACatch(speciesCode, unitQuantity, weightMeasure, weighingMeansCode, usageCode, typeCode, relatedFishingTrips, specifiedSizeDistribution, relatedAAPStocks, appliedAAPProcesses, relatedSalesBatches, specifiedFLUXLocations, usedFishingGears, applicableFLUXCharacteristics, destinationFLUXLocations);
return faCatch;
}
Aggregations