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

aquality.selenium.core.localization.ILocalizationModule Maven / Gradle / Ivy

Go to download

Library with core functions simplifying work with Selenium-controlled applications.

There is a newer version: 4.2.0
Show newest version
package aquality.selenium.core.localization;

/**
 * Describes implementations of localization services to be registered in DI container.
 */
public interface ILocalizationModule {
    /**
     * @return class which implements {@link ILocalizationManager}
     */
    default Class getLocalizationManagerImplementation() {
        return LocalizationManager.class;
    }

    /**
     * @return class which implements {@link ILocalizedLogger}
     */
    default Class getLocalizedLoggerImplementation() {
        return LocalizedLogger.class;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy