/*
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.*;
import java.rmi.*;
public interface SimpleCMPHome extends EJBHome {
public SimpleCMP findByPrimaryKey(java.lang.String pk)
throws FinderException, java.rmi.RemoteException;
public SimpleCMP create(String name,Integer zaiko)
throws RemoteException, CreateException;
}
|