/**
 * 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 and whose metadata is
	 * either incomplete or invalid.
	 */
	DRAFT,

	/**
	 * A title that has complete and valid metadata. It has not yet received all
	 * required asset files.
	 */
	COMMITTED,
	
	/**
	 * Title has all of its physical assets and the metadata is valid and complete.
	 */
	READY,
	
	/**
	 * Title is approved. Reserved, do not use.
	 */
	APPROVED,
	
	/**
	 * Title has been retired from the system. Reserved, do not use. 
	 */
	RETIRED
}
