Manager.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 Manager.
  7.  * @lomboz generated
  8.  */
  9. public interface Manager
  10.    extends javax.ejb.EJBObject
  11. {
  12.    /**
  13.     * Returns the managerID
  14.     * @return the managerID
  15.     */
  16.    public java.lang.String getManagerID(  )
  17.       throws java.rmi.RemoteException;
  18.    /**
  19.     * Sets the mangerID
  20.     * @param java.lang.String the new managerID value
  21.     */
  22.    public void setManagerID( java.lang.String managerID )
  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 message
  74.     * @return the message
  75.     */
  76.    public java.lang.String getMessage(  )
  77.       throws java.rmi.RemoteException;
  78.    /**
  79.     * Sets the message
  80.     * @param java.lang.String the new message value
  81.     */
  82.    public void setMessage( java.lang.String message )
  83.       throws java.rmi.RemoteException;
  84.    /**
  85.     * Returns the salary
  86.     * @return the salary
  87.     */
  88.    public float getSalary(  )
  89.       throws java.rmi.RemoteException;
  90.    /**
  91.     * Sets the salary
  92.     * @param java.lang.String the new salary value
  93.     */
  94.    public void setSalary( float salary )
  95.       throws java.rmi.RemoteException;
  96.    /**
  97.     * Returns the Manager Data Object
  98.     * @return the ManagerData
  99.     */
  100.    public bmp.ManagerData getManagerData(  )
  101.       throws java.rmi.RemoteException;
  102. }