use of un.unece.uncefact.data.standard.reusableaggregatebusinessinformationentity._20.FLUXGeographicalCoordinate 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;
}
Aggregations