/*
 * Created on Jul 26, 2006
 * 
 * (C) Copyright TANDBERG Television Ltd.
 */

package com.tandbergtv.workflow.sanmanager.entities;

/**
 * An enumeration describing the different status values a Drive can have
 * 
 * @author Vijay Silva
 */
public enum DriveStatus
{
	/**
	 * Normal Status, the Drive is OK
	 */
	OK,

	/**
	 * Warning Status, the Drive needs some attention
	 */
	WARNING,

	/**
	 * Error Status, the Drive needs to be fixed
	 */
	ERROR
}
