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

public class BeanOrder
   implements java.io.Serializable
{
   static final long serialVersionUID = 3680248936725302989L;
   public String[] order;
   public int next;

   public BeanOrder()
   {
   }

   public BeanOrder(String[] order)
   {
      this.order = order;
      next = 0;
   }
}