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

📄 airlineshoppingcartremotehome.java

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


package com.wlsunleashed.ejb.session.stateful;

import java.rmi.RemoteException;

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


/**
 * This class Represents a remote home interface  for the AirlineShoppingCart
 * EJB Stateful session bean
 * 
 * @version 1.0
 */
public interface AirlineShoppingCartRemoteHome extends EJBHome {
    /**
     * The default create method
     * 
     * @return A Local object for the Airline Shopping Cart EJB
     * 
     * @throws CreateException Thrown when any error occurs  while creating a
     *         new bean instance
     * @throws RemoteException Thrown when any remote exception occurs
     */
    AirlineShoppingCartRemoteObject create()
                                    throws RemoteException, CreateException;

    /**
     * The create method that takes the origin and destination locations
     * 
     * @param origin The origin airport
     * @param destination The destination airport
     * 
     * @return A Local object for the Airline Shopping Cart EJB
     * 
     * @throws CreateException Thrown when any error occurs  while creating a
     *         new bean instance
     * @throws RemoteException Thrown when any remote exception occurs
     */
    AirlineShoppingCartRemoteObject create(String origin, String destination)
                                    throws RemoteException, CreateException;
}

⌨️ 快捷键说明

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