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