Scheduler.java
资源名称:某公司的java培训教材 [点击查看]
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:1k
源码类别:
Java编程
开发平台:
Java
- 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;
- }