public interface Product extends javax.ejb.EJBObject {
  String getSKU() throws java.rmi.RemoteException;
  void setSKU(String newValue) throws java.rmi.RemoteException;
  String getName() throws java.rmi.RemoteException;
  void setName(String newValue) throws java.rmi.RemoteException;
  String getType() throws java.rmi.RemoteException;
  void setType(String newValue) throws java.rmi.RemoteException;
  String getDesc() throws java.rmi.RemoteException;
  void setDesc(String newValue) throws java.rmi.RemoteException;
  int getPrice() throws java.rmi.RemoteException;
  void setPrice(int newValue) throws java.rmi.RemoteException;
  int getInStock() throws java.rmi.RemoteException;
  void setInStock(int newValue) throws java.rmi.RemoteException;
}
