/**
 * IPayload.java
 * Created Apr 26, 2006
 * Copyright (C) Tandberg Television 2006
 */
package com.tandbergtv.workflow.message;

/**
 * Just a marker interface that represents the body of a message.
 * @author Sahil Verma
 */
public interface IPayload {

	/**
	 * Returns a String representation of the Payload content. 
	 *  
	 * @return String representation of the Payload content.
	 */
	String getContent();
}
