/**
 * HTTPPayload.java
 * Created Apr 27, 2006
 * Copyright (C) Tandberg Television 2006
 */
package com.tandbergtv.workflow.message;

/**
 * Represents an HTTP message body
 * @author Sahil Verma
 */
public class HTTPPayload extends StringPayload {

	/**
	 * Creates an empty HTTPPayload  
	 */
	public HTTPPayload() {
		super();
	}
	
	/**
	 * Creates an HTTPPayload with the specified content
	 * 
	 * @param content
	 *            The initial content of the payload.
	 */
	public HTTPPayload(String content) {
		super(content);
	}
}
