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

📄 airlinereservationremotehome.java

📁 BEA WebLogic Server 8.1大全 = BEA webLogic server 8.1 unleashed (美) Mark Artiges等著 袁毅 ... [等] 译 eng
💻 JAVA
字号:
/* 
 * WebLogic Server Unleashed
 * 
 */


package com.wlsunleashed.ejb.session.stateless;

import java.rmi.RemoteException;

import javax.ejb.CreateException;
import javax.ejb.EJBHome;


/**
 * This class Represents a Remote Home interface of  the AirlineReservation
 * bean.
 * 
 * @version 1.0
 */
public interface AirlineReservationRemoteHome extends EJBHome {
    /**
     * Creates and returns a new bean instance.
     * 
     * @return AirlineReservationRemoteObject: The remote object interface  of
     *         the bean
     * 
     * @throws RemoteException Whenever a system level failure  occurs while
     *         attempting the create
     * @throws CreateException The bean can use this to report any failures
     *         that may occur while creating the bean.
     */
    AirlineReservationRemoteObject create()
                                   throws RemoteException, CreateException;
}

⌨️ 快捷键说明

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