AddressLocalHome |
/* * Generated file - Do not edit! */ package com.alodar.example.interfaces; import java.lang.*; /** * Local home interface for Address. Lookup using {1} * @author XDOCLET 1.1.2 * @xdoclet-generated at Aug 25, 2002 3:02:28 PM */ public interface AddressLocalHome extends javax.ejb.EJBLocalHome { public static final String COMP_NAME="java:comp/env/ejb/AddressLocal"; public static final String JNDI_NAME="com.alodar.example.interfaces.AddressLocal"; /** * 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.AddressLocal create(com.alodar.example.interfaces.AddressData data) throws javax.ejb.CreateException; public com.alodar.example.interfaces.AddressLocal findByPrimaryKey(com.alodar.example.interfaces.AddressPK pk) throws javax.ejb.FinderException; }
AddressLocalHome |