airlineshoppingcartlocalhome.java

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

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


package com.wlsunleashed.ejb.session.stateful;

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


/**
 * This class represents the "local home" for  the Airline Shopping Cart bean
 * 
 * @version 1.0
 */
public interface AirlineShoppingCartLocalHome extends EJBLocalHome {
    /**
     * 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
     */
    AirlineShoppingCartLocalObject create()
                                   throws CreateException;

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

⌨️ 快捷键说明

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