/**
 * TitleStatus.java
 * Created Apr 22, 2008
 * Copyright (c) TANDBERG Television 2007-2008
 */
package com.tandbergtv.watchpoint.pmm.entities;

/**
 * Status of a title
 * 
 * @author Sahil Verma
 */
public enum TitleStatus {
	
	/**
	 * A title that does not have any physical assets
	 */
	NEW,
	
	/**
	 * Title has all of its physical assets
	 */
	READY,
	
	/**
	 * Title is approved. Reserved, do not use.
	 */
	APPROVED,
	
	/**
	 * Title has been retired from the system. Reserved, do not use. 
	 */
	RETIRED
}
