Methods Summary |
---|
public void | ejbActivate()
// Not implemented.
|
public java.lang.Integer | ejbCreate(java.lang.Integer id)
this.id = id;
return null;
|
public void | ejbLoad()
// Not implemented.
|
public void | ejbPassivate()
// Not implemented.
|
public void | ejbPostCreate(java.lang.Integer id)
// Do nothing. Required.
|
public void | ejbRemove()
// Not implemented.
|
public void | ejbStore()
// Not implemented.
|
public int | getBedCount()
return bedCount;
|
public int | getDeckLevel()
return deckLevel;
|
public java.lang.String | getName()
return name;
|
public int | getShipId()
return shipId;
|
public void | setBedCount(int bc)
bedCount = bc;
|
public void | setDeckLevel(int level)
deckLevel = level;
|
public void | setEntityContext(javax.ejb.EntityContext ctx)
// Not implemented.
|
public void | setName(java.lang.String str)
name = str;
|
public void | setShipId(int sp)
shipId = sp;
|
public void | unsetEntityContext()
// Not implemented.
|