scheduler.java

来自「100多M的J2EE培训内容」· Java 代码 · 共 31 行

JAVA
31
字号
package com.borland.training.meetings.sessions;import javax.ejb.*;import java.util.*;import java.rmi.*;public interface Scheduler extends javax.ejb.EJBObject {  public String createRoom(RoomValue roomValue) throws RemoteException;  public RoomValue findRoom(String name) throws RemoteException;  public Collection findAllRooms() throws RemoteException;  public void updateRoom(RoomValue roomValue) throws RemoteException;  public void removeRoom(String name) throws RemoteException;  public void removeAllRooms() throws RemoteException;  public Long createMeeting(MeetingValue meetingValue) throws RemoteException;  public MeetingValue findMeeting(Long id) throws RemoteException;  public Collection findMeetingsOfAttendee(Long id) throws RemoteException;  public Collection findAllMeetings() throws RemoteException;  public void updateMeeting(MeetingValue meetingValue) throws RemoteException;  public void removeMeeting(Long id) throws RemoteException;  public void removeAllMeetings() throws RemoteException;  public Long createAttendee(AttendeeValue attendeeValue) throws RemoteException;  public AttendeeValue findAttendee(Long id) throws RemoteException;  public Collection findAttendeesByName(String name) throws RemoteException;  public Collection findAllAttendees() throws RemoteException;  public void updateAttendee(AttendeeValue attendeeValue) throws RemoteException;  public void removeAttendee(Long id) throws RemoteException;  public void removeAllAttendees() throws RemoteException;}

⌨️ 快捷键说明

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