Customer.java
上传用户:hgs128
上传日期:2007-02-03
资源大小:166k
文件大小:3k
源码类别:

百货/超市行业

开发平台:

WINDOWS

  1. /*
  2.  * Generated by XDoclet - Do not edit!
  3.  */
  4. package bmp;
  5. /**
  6.  * Remote interface for Customer.
  7.  * @lomboz generated
  8.  */
  9. public interface Customer
  10.    extends javax.ejb.EJBObject
  11. {
  12.    /**
  13.     * Returns the customerID
  14.     * @return the customerID
  15.     */
  16.    public java.lang.String getCustomerID(  )
  17.       throws java.rmi.RemoteException;
  18.    /**
  19.     * Sets the customerID
  20.     * @param java.lang.String the new customerID value
  21.     */
  22.    public void setCustomerID( java.lang.String customerID )
  23.       throws java.rmi.RemoteException;
  24.    /**
  25.     * Returns the userID
  26.     * @return the userID
  27.     */
  28.    public java.lang.String getUserID(  )
  29.       throws java.rmi.RemoteException;
  30.    /**
  31.     * Sets the userID
  32.     * @param java.lang.String the new userID value
  33.     */
  34.    public void setUserID( java.lang.String userID )
  35.       throws java.rmi.RemoteException;
  36.    /**
  37.     * Returns the firstName
  38.     * @return the firstName
  39.     */
  40.    public java.lang.String getFirstName(  )
  41.       throws java.rmi.RemoteException;
  42.    /**
  43.     * Sets the firstName
  44.     * @param java.lang.String the new firstName value
  45.     */
  46.    public void setFirstName( java.lang.String firstName )
  47.       throws java.rmi.RemoteException;
  48.    /**
  49.     * Returns the lastName
  50.     * @return the lastName
  51.     */
  52.    public java.lang.String getLastName(  )
  53.       throws java.rmi.RemoteException;
  54.    /**
  55.     * Sets the lastName
  56.     * @param java.lang.String the new lastName value
  57.     */
  58.    public void setLastName( java.lang.String lastName )
  59.       throws java.rmi.RemoteException;
  60.    /**
  61.     * Returns the address
  62.     * @return the address
  63.     */
  64.    public java.lang.String getAddress(  )
  65.       throws java.rmi.RemoteException;
  66.    /**
  67.     * Sets the address
  68.     * @param java.lang.String the new address value
  69.     */
  70.    public void setAddress( java.lang.String address )
  71.       throws java.rmi.RemoteException;
  72.    /**
  73.     * Returns the phone
  74.     * @return the phone
  75.     */
  76.    public java.lang.String getPhone(  )
  77.       throws java.rmi.RemoteException;
  78.    /**
  79.     * Sets the phone
  80.     * @param java.lang.String the new phone value
  81.     */
  82.    public void setPhone( java.lang.String phone )
  83.       throws java.rmi.RemoteException;
  84.    /**
  85.     * Returns the shareholderStatus
  86.     * @return the shareholderStatus
  87.     */
  88.    public java.lang.String getShareholderStatus(  )
  89.       throws java.rmi.RemoteException;
  90.    /**
  91.     * Sets the shareholderStatus
  92.     * @param java.lang.String the new shareholderStatus value
  93.     */
  94.    public void setShareholderStatus( java.lang.String shareholderStatus )
  95.       throws java.rmi.RemoteException;
  96. }