/*
 * Created on Jul 31, 2006
 * 
 * (C) Copyright TANDBERG Television Ltd.
 */

package com.tandbergtv.watchpoint.pmm.communication;

/**
 * Class that contains the list of constants defining the Workflow Message parameter names for both
 * the input and output parameters..
 * 
 * @author Vijay Silva
 */
public final class MessageParameters
{
	// Cannot instantiate
	private MessageParameters()
	{
		super();
	}

	/**
	 * Output parameter used in case there is an error performing the operation.
	 */
	public static final String ERROR_MESSAGE = "error-message";

	/**
	 * Output parameter used in case there is an error performing the operation.
	 */
	public static final String ERROR_CODE = "error-code";
	
	/**
	 * Output parameter used in case there is an error performing the operation.
	 */
	public static final String ERROR_STACK = "error-stack";

}
