/*
 * Created on Jul 28, 2008 (C) Copyright TANDBERG Television Ltd.
 */

package com.tandbergtv.watchpoint.pmm.title.provider.xport;

/**
 * The Property names for the Title Provider Instance
 * 
 * @author Vijay Silva
 */
public final class InstanceProperties {

	private InstanceProperties() {
	}

	/**
	 * Property Name for the 'URL' for the provider instance. The 'URL' has form: &lt;Host
	 * Name&gt;[:&lt;Port&gt;]
	 */
	public static final String PROVIDER_URL = "ProviderURL";

	/**
	 * Property Name containing the Database Connection String
	 */
	public static final String DB_CONNECTION_STRING = "DBConnectionString";
	
	/**
	 * Username for db connection
	 */
	public static final String DB_USERNAME = "DBUsername";
	
	/**
	 * Password for db connection
	 */
	public static final String DB_PASSWORD = "DBPassword";
	
	/**
	 * Fully qualified db connection driver class name
	 */
	public static final String DB_DRIVER_CLASS = "DBDriverClass";
}
