/**
 * 
 */
package com.tandbergtv.workflow.comm;

/**
 * Represents a device in the workflow system. Communication with a device can be carried out by
 * messages via an adaptor for the appropriate type of device.
 * 
 * @author Chandan Gudla
 */
public interface IDevice
{
	String getName();
}
