⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 nullactivityfactory.java

📁 jainslee1.0 源代码
💻 JAVA
字号:
package javax.slee.nullactivity;import javax.slee.FactoryException;import javax.slee.TransactionRequiredLocalException;/** * The Null Activity Factory is used by SBBs to create new null activities. * <p> * <dl> *   <dt><b>SBB JNDI Location:</b> *   <dd><code>java:comp/env/slee/nullactivity/factory</code> * </dl> * * @see NullActivity * @see NullActivityContextInterfaceFactory */public interface NullActivityFactory {    /**     * Create a new null activity.     * <p>     * This method is a mandatory transactional method.  The null activity will     * only be created if the transaction invoking this method commits successfully.     * @throws TransactionRequiredLocalException if this method is invoked without a valid transaction     *        context.     * @throws FactoryException if the null activity could not be created due to a     *       system-level failure.     */    public NullActivity createNullActivity()        throws TransactionRequiredLocalException, FactoryException;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -