/*
 * JBoss, the OpenSource EJB server
 * 
 * Distributable under LGPL license. See terms of license at gnu.org.
 */
package javax.resource.spi.work;

/**
 * A helper for work listener implementations
 */
public class WorkAdapter implements WorkListener
{
   public void workAccepted(WorkEvent e)
   {
   }

   public void workCompleted(WorkEvent e)
   {
   }

   public void workRejected(WorkEvent e)
   {
   }

   public void workStarted(WorkEvent e)
   {
   }
}