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

百货/超市行业

开发平台:

WINDOWS

  1. /*
  2.  * Generated by XDoclet - Do not edit!
  3.  */
  4. package cmp;
  5. /**
  6.  * Remote interface for Supplier.
  7.  * @lomboz generated
  8.  */
  9. public interface Supplier
  10.    extends javax.ejb.EJBObject
  11. {
  12.    /**
  13.     * Returns the supplierid
  14.     * @return the supplierid
  15.     */
  16.    public java.lang.String getSupplierid(  )
  17.       throws java.rmi.RemoteException;
  18.    /**
  19.     * Sets the supplierid
  20.     * @param java.lang.String the new supplierid value
  21.     */
  22.    public void setSupplierid( java.lang.String supplierid )
  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 credit_limit
  86.     * @return the credit_limit
  87.     */
  88.    public java.lang.Float getCredit_limit(  )
  89.       throws java.rmi.RemoteException;
  90.    /**
  91.     * Sets the credit_limit
  92.     * @param java.lang.Float the new credit_limit value
  93.     */
  94.    public void setCredit_limit( java.lang.Float credit_limit )
  95.       throws java.rmi.RemoteException;
  96. }