/* * JBoss, the OpenSource EJB server * * Distributable under LGPL license. * See terms of license at gnu.org. */ package javax.jms; /** * * @author Chris Kimpton (chris@kimptoc.net) * @version $Revision: 1.2 $ **/ public interface DeliveryMode { public static final int NON_PERSISTENT = 1; public static final int PERSISTENT = 2; }