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

com.versionone.apiclient.interfaces.ILocalizer Maven / Gradle / Ivy

Go to download

A library for custom Java development against the VersionOne Development Platform's REST API.

There is a newer version: 16.1.3
Show newest version
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