/*
 * JBoss, the OpenSource J2EE webOS
 *
 * Distributable under LGPL license.
 * See terms of license at gnu.org.
 */
 
package org.jboss.media.emb;

/**
 * @version <tt>$Revision: 1.1 $</tt>
 * @author <a href="mailto:spyridon_samothrakis@yahoo.com">Spyridon Samothrakis</a>
 */
public class CaptureMetaData
{
   private String m_deviceName;
   private String m_type;
   
   /**
    * @return
    */
   public String getDeviceName()
   {
      return m_deviceName;
   }

   /**
    * @return
    */
   public String getType()
   {
      return m_type;
   }

   /**
    * @param string
    */
   public void setDeviceName(String string)
   {
      m_deviceName = string;
   }

   /**
    * @param string
    */
   public void setType(String string)
   {
      m_type = string;
   }

}