/**
 * CMMessageService.java
 * Created on Apr 10, 2009
 * (C) Copyright TANDBERG Television Ltd.
 */
package com.tandbergtv.watchpoint.contentmgmt.communication;

import com.tandbergtv.watchpoint.communication.MessageService;

/**
 * @author Vlada Jakobac
 *
 */
public class CMMessageService extends MessageService {

	private static final String CONFIGURATION_FILE = "com/tandbergtv/watchpoint/contentmgmt/communication/messageconfigurationCM.xml";

	public CMMessageService() {
		super(CONFIGURATION_FILE);
	}

	/* (non-Javadoc)
	 * @see com.tandbergtv.workflow.core.service.Service#getServiceName()
	 */
	public String getServiceName() {
		return "Content Management Message Service";
	}

}
