AddressHome |
/* * Generated file - Do not edit! */ package com.alodar.example.interfaces; import java.lang.*; /** * Home interface for Address. Lookup using {1} * @author XDOCLET 1.1.2 * @xdoclet-generated at Aug 25, 2002 3:02:28 PM */ public interface AddressHome extends javax.ejb.EJBHome { public static final String COMP_NAME="java:comp/env/ejb/Address"; public static final String JNDI_NAME="com.alodar.example.interfaces.Address"; /** * When the client invokes a create method, the EJB container invokes the ejbCreate method. * Typically, an ejbCreate method in an entity bean performs the following tasks: * Inserts the entity state into the database. * Initializes the instance variables. * Returns the primary key. * @param data the data object used to initialise the new instance * @return the primary key of the new instance */ public com.alodar.example.interfaces.Address create(com.alodar.example.interfaces.AddressData data) throws java.rmi.RemoteException,javax.ejb.CreateException; public com.alodar.example.interfaces.Address findByPrimaryKey(com.alodar.example.interfaces.AddressPK pk) throws java.rmi.RemoteException,javax.ejb.FinderException; }
AddressHome |