/*
 * JBoss, the OpenSource EJB server
 *
 * Distributable under LGPL license.
 * See terms of license at gnu.org.
 */
package javax.xml.rpc.holders;

import javax.xml.namespace.QName;

/** A holder for QNames.
 * 
 * @author Scott.Stark@jboss.org
 * @version $Revision: 1.4 $
 */
public final class QNameHolder
   implements Holder
{
   public QName value;

   public QNameHolder()
   {
      
   }      
   public QNameHolder(QName value)
   {
      this.value = value;
   }
}