quickbooking.java
来自「一个Enterprise Service Arch.的简单例子」· Java 代码 · 共 109 行
JAVA
109 行
package com.zklee.test.quickcarrental;
import javax.ejb.EJBObject;
import java.rmi.RemoteException;
import java.util.Date;
public interface QuickBooking extends EJBObject {
/**
* Business Method.
*/
public String getBookingId() throws RemoteException;
/**
* Business Method.
*/
public void setBookingId(String bookingId) throws RemoteException;
/**
* Business Method.
*/
public String getVehicleTypeId() throws RemoteException;
/**
* Business Method.
*/
public void setVehicleTypeId(String vehicleTypeId) throws RemoteException;
/**
* Business Method.
*/
public Date getDateTo() throws RemoteException;
/**
* Business Method.
*/
public void setDateTo(Date dateTo) throws RemoteException;
/**
* Business Method.
*/
public Date getDateFrom() throws RemoteException;
/**
* Business Method.
*/
public void setDateFrom(Date dateFrom) throws RemoteException;
/**
* Business Method.
*/
public String getDropoffLocation() throws RemoteException;
/**
* Business Method.
*/
public void setDropoffLocation(String dropoffLocation)
throws RemoteException;
/**
* Business Method.
*/
public Date getReservationDate() throws RemoteException;
/**
* Business Method.
*/
public void setReservationDate(Date reservationDate)
throws RemoteException;
/**
* Business Method.
*/
public String getPickupLocation() throws RemoteException;
/**
* Business Method.
*/
public void setPickupLocation(String pickupLocation)
throws RemoteException;
/**
* Business Method.
*/
public String getStatus() throws RemoteException;
/**
* Business Method.
*/
public void setStatus(String status) throws RemoteException;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?