/* * * Copyright 2000 Sun Microsystems, Inc. All Rights Reserved. * * This software is the proprietary information of Sun Microsystems, Inc. * Use is subject to license terms. * */ import javax.ejb.*; public class AdderEJB implements SessionBean { int total; public void ejbCreate() { total = 0; } public void ejbCreate(int initial) { total = initial; } public void add(int number) { total += number; } public int getTotal() { return total; } public AdderEJB() {} public void setSessionContext(SessionContext sc) {} public void ejbRemove() {} public void ejbActivate() {} public void ejbPassivate() {} } // AdderEJB