use of eu.europa.ec.fisheries.wsdl.asset.types.AssetListCriteria in project UVMS-ActivityModule-APP by UnionVMS.
the class FishingTripServiceBean method getMdrCodesEnrichWithAssetsModuleDataIfNeeded.
// To process MDR code list and compare with database:vesselTransportMeansDao and then enrich with asset module
private void getMdrCodesEnrichWithAssetsModuleDataIfNeeded(VesselDetailsDTO vesselDetailsDTO) {
final String ACRONYM = "FLUX_VESSEL_ID_TYPE";
final String filter = "*";
final List<String> columnsList = new ArrayList<String>();
Integer nrOfResults = 9999999;
if (vesselDetailsDTO != null) {
List<String> codeList = null;
try {
codeList = mdrModuleService.getAcronymFromMdr(ACRONYM, filter, columnsList, nrOfResults, "code").get("code");
Set<AssetIdentifierDto> vesselIdentifiers = vesselDetailsDTO.getVesselIdentifiers();
List<AssetListCriteriaPair> assetListCriteriaPairs = BaseMapper.mapMdrCodeListToAssetListCriteriaPairList(vesselIdentifiers, codeList);
log.info("Asset Criteria Pair List size is :" + assetListCriteriaPairs.size());
log.info("Got code list of size from mdr:" + codeList.size());
if (null != assetListCriteriaPairs && !CollectionUtils.isEmpty(assetListCriteriaPairs)) {
AssetListCriteria criteria = new AssetListCriteria();
// need to set this
criteria.setIsDynamic(false);
criteria.getCriterias().addAll(assetListCriteriaPairs);
AssetListQuery query = new AssetListQuery();
AssetListPagination assetListPagination = new AssetListPagination();
// need to set this
assetListPagination.setPage(1);
// need to set this
assetListPagination.setListSize(1000);
query.setPagination(assetListPagination);
query.setAssetSearchCriteria(criteria);
List<Asset> assetList = assetModuleService.getAssetListResponse(query);
if (null != assetList && !CollectionUtils.isEmpty(assetList)) {
vesselDetailsDTO.enrichIdentifiers(assetList.get(0));
}
}
} catch (ServiceException e) {
log.error("Error while trying to send message to Assets module.", e);
}
}
}
use of eu.europa.ec.fisheries.wsdl.asset.types.AssetListCriteria in project UVMS-Docker by UnionVMS.
the class AssetTestHelper method getBasicAssetQuery.
public static AssetListQuery getBasicAssetQuery() {
AssetListQuery assetListQuery = new AssetListQuery();
AssetListPagination assetListPagination = new AssetListPagination();
assetListPagination.setListSize(1000);
assetListPagination.setPage(1);
assetListQuery.setPagination(assetListPagination);
AssetListCriteria assetListCriteria = new AssetListCriteria();
assetListCriteria.setIsDynamic(true);
assetListQuery.setAssetSearchCriteria(assetListCriteria);
return assetListQuery;
}
use of eu.europa.ec.fisheries.wsdl.asset.types.AssetListCriteria in project UVMS-ActivityModule-APP by UnionVMS.
the class FishingTripServiceBean method enrichWithAssetsModuleDataIfNeeded.
// need confirmation for removal of this method
private void enrichWithAssetsModuleDataIfNeeded(VesselDetailsDTO vesselDetailsDTO) {
if (vesselDetailsDTO != null && vesselDetailsDTO.hasEmptyIdentifierValues()) {
try {
Set<AssetIdentifierDto> vesselIdentifiers = vesselDetailsDTO.getVesselIdentifiers();
List<AssetListCriteriaPair> assetListCriteriaPairs = BaseMapper.mapToAssetListCriteriaPairList(vesselIdentifiers);
AssetListCriteria criteria = new AssetListCriteria();
criteria.getCriterias().addAll(assetListCriteriaPairs);
AssetListQuery query = new AssetListQuery();
query.setAssetSearchCriteria(criteria);
List<Asset> assetList = assetModuleService.getAssetListResponse(query);
vesselDetailsDTO.enrichIdentifiers(assetList.get(0));
} catch (ServiceException e) {
log.error("Error while trying to send message to Assets module.", e);
}
}
}
Aggregations