1 /*2 * JBoss, the OpenSource J2EE webOS3 *4 * Distributable under LGPL license.5 * See terms of license at gnu.org.6 */7 8 9 package org.jboss.media.engine;10 11 import org.jboss.system.ServiceMBeanSupport;12 13 /**14 * @version <tt>$Revision: 1.1 $</tt>15 * @author <a HREF="mailto:spyridon_samothrakis@yahoo.com">Spyridon Samothrakis</a>16 * 17 * Creates a media and registers it in the media registry18 * 19 * 20 * @jmx.mbean extends="org.jboss.system.ServiceMBean"21 * @jmx.mbean description="Creates the apropriate media"22 */23 public class MediaFactory24 extends ServiceMBeanSupport25 implements MediaFactoryMBean26 {27 28 /**29 * @jmx.managed-operation description="add a transcoder"30 */31 public boolean createMedia()32 {33 // dummy for the moment34 return false;35 }36 }37