airlinereservationlocalhome.java

来自「BEA WebLogic Server 8.1大全 = BEA webLogic」· Java 代码 · 共 32 行

JAVA
32
字号
/* 
 * WebLogic Server Unleashed
 * 
 */


package com.wlsunleashed.ejb.session.stateless;

import javax.ejb.CreateException;
import javax.ejb.EJBLocalHome;


/**
 * This class Represents a Local Home interface of the  AirlineReservation
 * bean.
 * 
 * @version 1.0
 */
public interface AirlineReservationLocalHome extends EJBLocalHome {
    /**
     * Creates and returns a new bean instance.
     * 
     * @return AirlineReservationLocalObject: The local object interface  of
     *         the bean
     * 
     * @throws CreateException The bean can use this to report any failures
     *         that may occur while creating the bean.
     */
    AirlineReservationLocalObject create()
                                  throws CreateException;
}

⌨️ 快捷键说明

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