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

public interface Componente extends EJBObject
{
	public String getCodComp() throws java.rmi.RemoteException;
	public String getNomeComp() throws java.rmi.RemoteException;
    	public int getQuantComp() throws java.rmi.RemoteException;
	public void setCodComp(String codComp) throws java.rmi.RemoteException;
	public void setNomeComp(String nomeComp) throws java.rmi.RemoteException;
	public void setQuantComp(int quantComp) throws java.rmi.RemoteException;
}