/* * T H E Copyright (c) The Theory Center, * Inc. 1997-1999. All Rights Re- * ||||| || served. Unpublished rights re- * || || served under the copyright laws * || |||| ||| ||| ||||| | || of the United States. The soft- * || || | | | || | || | | || ware contained on this media is * || || | ||||| || | || | || proprietary to and embodies the * || || | | || | || |||| confidential technology of * || || | ||| ||| || | The Theory Center. The possession * |||| or receipt of this information * does not convey any right to dis- * ||| || close its contents, reproduce it, * || | || or use, or license the use, for * || ||| |||| |||| ||| ||||| manufacture or sale, the informa- * || | | || | || | | || | tion or anything described * || ||||| || | || ||||| || therein. Any use, disclosure, or * || | | || | || | || reproduction without The Theory * ||| ||| || | || ||| || Center's prior written permission * is strictly prohibited. * * Generated By Theory's SmartGenerator: * At Mon Aug 09 13:22:17 EDT 1999 * * $Header: /smart/src/examples/extending/AlphaNumericSequencerExtensionHome.java 5 8/25/99 1:13p Derrick $ */ package examples.extending; import theory.smart.foundation.*; import javax.ejb.*; import java.rmi.*; //$Import$_Begin ------------ CUSTOM CODE --------------- // Place additional import statements here //$Import$_End ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ /** * The home interface for the AlphaNumericSequencerExtension entity bean. Use this * class to create, remove, and find AlphaNumericSequencerExtension entity beans. */ public interface AlphaNumericSequencerExtensionHome extends SmartEJBHome //$Implements$_Begin ------------ CUSTOM CODE --------------- // Add interfaces that are implemented here //$Implements$_End ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ { /** * Create a new AlphaNumericSequencerExtension entity bean using the examples.extending.AlphaNumericSequencerExtensionPk. */ public AlphaNumericSequencerExtension create(examples.extending.AlphaNumericSequencerExtensionPk alphaNumericSequencerExtensionPk) throws CreateException, RemoteException; /** * Find an AlphaNumericSequencerExtension entity bean using the examples.extending.AlphaNumericSequencerExtensionPk. */ AlphaNumericSequencerExtension findByPrimaryKey(examples.extending.AlphaNumericSequencerExtensionPk alphaNumericSequencerExtensionPk) throws RemoteException, FinderException; // Add additional methods here }