📄 airlineshoppingcartlocalhome.java
字号:
/*
* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -