RoomRemoteHome.java
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:1k
源码类别:

Java编程

开发平台:

Java

  1. package com.borland.training.meetings.entities;
  2. import javax.ejb.*;
  3. import java.util.*;
  4. import java.rmi.*;
  5. public interface RoomRemoteHome extends javax.ejb.EJBHome {
  6.   public RoomRemote create(java.lang.String name, int capacity) throws CreateException, RemoteException;
  7.   public java.util.Collection findRoomsWithCapacityGreaterThan(int capacity) throws FinderException, RemoteException;
  8.   public java.util.Collection findAll() throws FinderException, RemoteException;
  9.   public RoomRemote findByPrimaryKey(java.lang.String name) throws FinderException, RemoteException;
  10.   public int calculateTotalCapacity() throws RemoteException;
  11. }