public class ProductBean implements EntityBean {
  private javax.ejb.EntityContext entityContext = null;
  public String sku;
  public int price;
  public String name;
  public String type;
  public String desc;
  public int inStock;

  public void ejbActivate() throws java.rmi.RemoteException {}
  public String ejbCreate(java.lang.String sku) throws javax.ejb.CreateException, java.rmi.RemoteException
  {
    this.sku = sku;
    return sku;
  }
  public void ejbLoad() throws java.rmi.RemoteException {}
  public void ejbPassivate() throws java.rmi.RemoteException {}
  public void ejbPostCreate(java.lang.String argProductId) throws java.rmi.RemoteException {}
  public void ejbRemove() throws java.rmi.RemoteException, javax.ejb.RemoveException {}
  public void ejbStore() throws java.rmi.RemoteException {}
  public javax.ejb.EntityContext getEntityContext() {
    return entityContext;
  }
  public void setEntityContext(javax.ejb.EntityContext ctx) throws java.rmi.RemoteException
  {
    entityContext = ctx;
  }
  public void unsetEntityContext() throws java.rmi.RemoteException {
    entityContext = null;
  }
  public String getSKU() {
    return sku;
  }
  public void setSKU(String newValue) {
    this.sku = newValue;
  }
  public String getName() {
    return name;
  }
  public void setName(String newValue) {
    this.name = newValue;
  }
  public String getType() {
    return type;
  }
  public void setType(String newValue) {
    this.type = newValue;
  }
  public String getDesc() {
    return this.desc;
  }
  public void setDesc(String newValue) {
    this.desc = newValue;
  }
  public int getPrice() {
    return price;
  }
  public void setPrice(int newValue) {
    this.price = newValue;
  }
  public int getInStock() {
    return inStock;
  }
  public void setInStock(int newValue) {
    this.inStock = newValue;
  }
}
