/*
Copyright (C) NEC Corporation 2004
NEC CONFIDENTIAL AND PROPRIETARY
All rights reserved by NEC Corporation.
This program must be used solely for the purpose for which
it was furnished by NEC Corporation. No part of this
program may be reproduced or disclosed to others, in any
form, without the prior written permission of NEC
Corporation. Use of copyright notice does not evidence
publication of the program.
*/
package sample;
import javax.ejb.*;
public interface HelloHome extends EJBHome {
public Hello create() throws CreateException, java.rmi.RemoteException;
}
|