package com.alodar.example.interfaces;
import java.lang.*;
public interface Customer
extends javax.ejb.EJBObject
{
public void addItem( com.alodar.example.interfaces.ItemData itemData ) throws javax.naming.NamingException, javax.ejb.CreateException, java.rmi.RemoteException;
public com.alodar.example.interfaces.CustomerData getData( ) throws java.rmi.RemoteException;
public void setAddress( com.alodar.example.interfaces.AddressData addressData ) throws javax.naming.NamingException, javax.ejb.CreateException, java.rmi.RemoteException;
public void setData( com.alodar.example.interfaces.CustomerData data ) throws java.rmi.RemoteException;
}