/*
 *
 * Copyright 2000 Sun Microsystems, Inc. All Rights Reserved.
 * 
 * This software is the proprietary information of Sun Microsystems, Inc.  
 * Use is subject to license terms.
 * 
 */

package com.web_tomorrow.item;

import javax.ejb.EJBObject;
import java.rmi.RemoteException;

public interface Item extends EJBObject {
    
    public String getCompanyId()
        throws RemoteException;

    public String getItemId()
        throws RemoteException;
   
    public String getDesc()
        throws RemoteException;
       
    public double getPrice()
        throws RemoteException;
        
}