All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.liferay.commerce.order.CommerceDefinitionTermContributor Maven / Gradle / Ivy

There is a newer version: 87.0.0
Show newest version
/**
 * SPDX-FileCopyrightText: (c) 2000 Liferay, Inc. https://liferay.com
 * SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06
 */

package com.liferay.commerce.order;

import com.liferay.portal.kernel.exception.PortalException;

import java.util.HashMap;
import java.util.List;
import java.util.Locale;
import java.util.Map;

/**
 * @author Luca Pellizzon
 */
public interface CommerceDefinitionTermContributor {

	public default Map getDefinitionTerms(Locale locale) {
		Map map = new HashMap<>();

		List terms = getTerms();

		for (String term : terms) {
			map.put(term, getLabel(term, locale));
		}

		return map;
	}

	public String getFilledTerm(String term, Object object, Locale locale)
		throws PortalException;

	public String getLabel(String term, Locale locale);

	public List getTerms();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy