aquality.selenium.core.localization.ILocalizationModule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aquality-selenium-core Show documentation
Show all versions of aquality-selenium-core Show documentation
Library with core functions simplifying work with Selenium-controlled applications.
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 extends ILocalizationManager> getLocalizationManagerImplementation() {
return LocalizationManager.class;
}
/**
* @return class which implements {@link ILocalizedLogger}
*/
default Class extends ILocalizedLogger> getLocalizedLoggerImplementation() {
return LocalizedLogger.class;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy