com.sun.j2ee.blueprints.shoppingcart.catalog.ejb
Class CatalogEJB

java.lang.Object
  |
  +--com.sun.j2ee.blueprints.shoppingcart.catalog.model.CatalogModel
        |
        +--com.sun.j2ee.blueprints.shoppingcart.catalog.ejb.CatalogEJB

public class CatalogEJB
extends CatalogModel
implements javax.ejb.SessionBean

Session Bean implementation of Catalog The business methods are in the CatalogModel class.

See Also:
CatalogModel, Serialized Form

Fields inherited from class com.sun.j2ee.blueprints.shoppingcart.catalog.model.CatalogModel
dao
 
Constructor Summary
CatalogEJB()
           
 
Method Summary
 void ejbActivate()
           
 void ejbCreate()
           
 void ejbPassivate()
           
 void ejbRemove()
           
 void setSessionContext(javax.ejb.SessionContext sc)
           
 
Methods inherited from class com.sun.j2ee.blueprints.shoppingcart.catalog.model.CatalogModel
destroy, getCategories, getCategory, getItem, getItems, getProduct, getProducts, init, searchProducts
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CatalogEJB

public CatalogEJB()
Method Detail

ejbCreate

public void ejbCreate()

setSessionContext

public void setSessionContext(javax.ejb.SessionContext sc)
Specified by:
setSessionContext in interface javax.ejb.SessionBean

ejbRemove

public void ejbRemove()
Specified by:
ejbRemove in interface javax.ejb.SessionBean

ejbActivate

public void ejbActivate()
Specified by:
ejbActivate in interface javax.ejb.SessionBean

ejbPassivate

public void ejbPassivate()
Specified by:
ejbPassivate in interface javax.ejb.SessionBean


Copyright © 2000 Sun Microsystems Inc. All Rights Reserved.