/*
 * Generated file - Do not edit!
 */
package com.alodar.example.interfaces;

import java.lang.*;

/**
 * Remote interface for Customer.
 * @author XDOCLET 1.1.2
 * @xdoclet-generated at Aug 25, 2002 3:02:28 PM
 */
public interface Customer
   extends javax.ejb.EJBObject
{
   /**
    * Adds to collection of local Item
    * @param itemData data value object of Item
    */
   public void addItem( com.alodar.example.interfaces.ItemData itemData ) throws javax.naming.NamingException, javax.ejb.CreateException, java.rmi.RemoteException;

   /**
    * Gets a data object representing this instance
    * @return a data object representing this instance
    */
   public com.alodar.example.interfaces.CustomerData getData(  ) throws java.rmi.RemoteException;

   /**
    * Sets local Address
    * @param addressData data value object of Address
    */
   public void setAddress( com.alodar.example.interfaces.AddressData addressData ) throws javax.naming.NamingException, javax.ejb.CreateException, java.rmi.RemoteException;

   /**
    * Sets a data object representing this instance
    * @param data a data object holding new values
    */
   public void setData( com.alodar.example.interfaces.CustomerData data ) throws java.rmi.RemoteException;

}