com.versionone.apiclient.interfaces.ILocalizer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of VersionOne.SDK.Java.APIClient Show documentation
Show all versions of VersionOne.SDK.Java.APIClient Show documentation
A library for custom Java development against the VersionOne Development Platform's REST API.
package com.versionone.apiclient.interfaces;
import com.versionone.apiclient.exceptions.V1Exception;
/**
* Interface required for localizers
*/
public interface ILocalizer {
/**
* Resolve the key to it's localized value
*
* @param key - String
* @return Localized String value
* @throws V1Exception V1Exception
*/
String resolve(String key) throws V1Exception;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy