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

百货/超市行业

开发平台:

WINDOWS

  1. /*
  2.  * Generated by XDoclet - Do not edit!
  3.  */
  4. package bmp;
  5. /**
  6.  * Local interface for Manager.
  7.  * @lomboz generated
  8.  */
  9. public interface ManagerLocal
  10.    extends javax.ejb.EJBLocalObject
  11. {
  12.    /**
  13.     * Returns the managerID
  14.     * @return the managerID
  15.     */
  16.    public java.lang.String getManagerID(  ) ;
  17.    /**
  18.     * Sets the mangerID
  19.     * @param java.lang.String the new managerID value
  20.     */
  21.    public void setManagerID( java.lang.String managerID ) ;
  22.    /**
  23.     * Returns the userID
  24.     * @return the userID
  25.     */
  26.    public java.lang.String getUserID(  ) ;
  27.    /**
  28.     * Sets the userID
  29.     * @param java.lang.String the new userID value
  30.     */
  31.    public void setUserID( java.lang.String userID ) ;
  32.    /**
  33.     * Returns the firstName
  34.     * @return the firstName
  35.     */
  36.    public java.lang.String getFirstName(  ) ;
  37.    /**
  38.     * Sets the firstName
  39.     * @param java.lang.String the new firstName value
  40.     */
  41.    public void setFirstName( java.lang.String firstName ) ;
  42.    /**
  43.     * Returns the lastName
  44.     * @return the lastName
  45.     */
  46.    public java.lang.String getLastName(  ) ;
  47.    /**
  48.     * Sets the lastName
  49.     * @param java.lang.String the new lastName value
  50.     */
  51.    public void setLastName( java.lang.String lastName ) ;
  52.    /**
  53.     * Returns the address
  54.     * @return the address
  55.     */
  56.    public java.lang.String getAddress(  ) ;
  57.    /**
  58.     * Sets the address
  59.     * @param java.lang.String the new address value
  60.     */
  61.    public void setAddress( java.lang.String address ) ;
  62.    /**
  63.     * Returns the message
  64.     * @return the message
  65.     */
  66.    public java.lang.String getMessage(  ) ;
  67.    /**
  68.     * Sets the message
  69.     * @param java.lang.String the new message value
  70.     */
  71.    public void setMessage( java.lang.String message ) ;
  72.    /**
  73.     * Returns the salary
  74.     * @return the salary
  75.     */
  76.    public float getSalary(  ) ;
  77.    /**
  78.     * Sets the salary
  79.     * @param java.lang.String the new salary value
  80.     */
  81.    public void setSalary( float salary ) ;
  82.    /**
  83.     * Returns the Manager Data Object
  84.     * @return the ManagerData
  85.     */
  86.    public bmp.ManagerData getManagerData(  ) ;
  87. }