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

com.sap.cds.adapter.edmx.EdmxI18nProvider Maven / Gradle / Ivy

/**************************************************************************
 * (C) 2019-2024 SAP SE or an SAP affiliate company. All rights reserved. *
 **************************************************************************/
package com.sap.cds.adapter.edmx;

import java.util.Locale;
import java.util.Map;

import com.sap.cds.services.runtime.CdsProvider;

/**
 * An {@link EdmxI18nProvider} provides translatable texts for metadata documents.
 */
public interface EdmxI18nProvider extends CdsProvider {

	/**
	 * Provides the ETag of the translatable texts for a given locale.
	 *
	 * @param locale the locale
	 * @return the ETag of the translatable texts in the respective locale.
	 */
	public String getETag(Locale locale);

	/**
	 * Provides the translatable texts for a given locale.
	 *
	 * @param locale the locale
	 * @return the i18n keys mapped to the texts in the respective locale.
	 */
	public Map getTexts(Locale locale);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy