1 package org.objectweb.jonas.jtests.beans.ejbql; 2 3 import javax.ejb.EJBException ; 4 import org.objectweb.jonas.jtests.beans.ejbql.ShipLocal; 5 6 public interface CabinLocal extends javax.ejb.EJBLocalObject { 7 8 public String getName() throws EJBException ; 9 public void setName(String str) throws EJBException ; 10 public int getDeckLevel() throws EJBException ; 11 public void setDeckLevel(int level) throws EJBException ; 12 public ShipLocal getShip(); 13 public void setShip(ShipLocal ship); 14 public int getBedCount() throws EJBException ; 15 public void setBedCount(int bc) throws EJBException ; 16 17 } 18 | Popular Tags |