com.liferay.commerce.internal.util.CommercePriceCalculationRegistryImpl Maven / Gradle / Ivy
/**
* Copyright (c) 2000-present Liferay, Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
package com.liferay.commerce.internal.util;
import com.liferay.commerce.price.CommerceOrderPriceCalculation;
import com.liferay.commerce.price.CommercePriceCalculationRegistry;
import com.liferay.commerce.price.CommerceProductPriceCalculation;
import com.liferay.osgi.service.tracker.collections.map.ServiceTrackerMap;
import com.liferay.osgi.service.tracker.collections.map.ServiceTrackerMapFactory;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import org.osgi.framework.BundleContext;
import org.osgi.service.component.annotations.Activate;
import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.Deactivate;
/**
* @author Riccardo Alberti
*/
@Component(
enabled = false, immediate = true,
service = CommercePriceCalculationRegistry.class
)
public class CommercePriceCalculationRegistryImpl
implements CommercePriceCalculationRegistry {
@Override
public CommerceOrderPriceCalculation getCommerceOrderPriceCalculation(
String key) {
return _orderPriceServiceTrackerMap.getService(key);
}
@Override
public Map
getCommerceOrderPriceCalculations() {
Map
commerceOrderPriceCalculations = new HashMap<>();
for (String key : _orderPriceServiceTrackerMap.keySet()) {
commerceOrderPriceCalculations.put(
key, _orderPriceServiceTrackerMap.getService(key));
}
return Collections.unmodifiableMap(commerceOrderPriceCalculations);
}
@Override
public CommerceProductPriceCalculation getCommerceProductPriceCalculation(
String key) {
return _productPriceServiceTrackerMap.getService(key);
}
@Override
public Map
getCommerceProductPriceCalculations() {
Map
commerceProductPriceCalculations = new HashMap<>();
for (String key : _productPriceServiceTrackerMap.keySet()) {
commerceProductPriceCalculations.put(
key, _productPriceServiceTrackerMap.getService(key));
}
return Collections.unmodifiableMap(commerceProductPriceCalculations);
}
@Activate
protected void activate(BundleContext bundleContext) {
_productPriceServiceTrackerMap =
ServiceTrackerMapFactory.openSingleValueMap(
bundleContext, CommerceProductPriceCalculation.class,
"commerce.price.calculation.key");
_orderPriceServiceTrackerMap =
ServiceTrackerMapFactory.openSingleValueMap(
bundleContext, CommerceOrderPriceCalculation.class,
"commerce.price.calculation.key");
}
@Deactivate
protected void deactivate() {
_productPriceServiceTrackerMap.close();
}
private ServiceTrackerMap
_orderPriceServiceTrackerMap;
private ServiceTrackerMap
_productPriceServiceTrackerMap;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy