/*
 * Created on Jun 30, 2008 (C) Copyright TANDBERG Television Ltd.
 */

package com.tandbergtv.watchpoint.pmm.util;

import java.util.ResourceBundle;

/**
 * The Properties for the Templates
 * 
 * @author Vijay Silva
 */
public class TemplateProperties {

	/* The Bundle Name */
	private static final String BUNDLE_NAME = "template-actions.pmmTemplates";

	/* Loading the Resource Bundle */
	private static final ResourceBundle RESOURCE_BUNDLE = ResourceBundle.getBundle(BUNDLE_NAME);

	/* Internal Constructor */
	private TemplateProperties() {
	}

	/**
	 * Get the property from the resource bundle
	 * 
	 * @param key The name of the property
	 * @return The value for the property
	 */
	public static String getString(String key) {
		return RESOURCE_BUNDLE.getString(key);
	}
}
