/*
 * JBoss, the OpenSource J2EE webOS
 *
 * Distributable under LGPL license.
 * See terms of license at gnu.org.
 */


package org.jboss.media.engine;

import org.jboss.system.ServiceMBeanSupport;

/**
 * @version <tt>$Revision: 1.1 $</tt>
 * @author <a href="mailto:spyridon_samothrakis@yahoo.com">Spyridon Samothrakis</a>
 * 
 * Creates a media and registers it in the media registry
 * 
 * 
 * @jmx.mbean extends="org.jboss.system.ServiceMBean"
 * @jmx.mbean description="Creates the apropriate media"
 */
public class MediaFactory
   extends ServiceMBeanSupport
      implements MediaFactoryMBean
{
   
   /**
    * @jmx.managed-operation description="add a transcoder"
    */
   public boolean createMedia()
   {
      // dummy for the moment
      return false;
   }
}