Supplier.java
资源名称:MyStore.rar [点击查看]
上传用户:hgs128
上传日期:2007-02-03
资源大小:166k
文件大小:3k
源码类别:
百货/超市行业
开发平台:
WINDOWS
- /*
- * Generated by XDoclet - Do not edit!
- */
- package cmp;
- /**
- * Remote interface for Supplier.
- * @lomboz generated
- */
- public interface Supplier
- extends javax.ejb.EJBObject
- {
- /**
- * Returns the supplierid
- * @return the supplierid
- */
- public java.lang.String getSupplierid( )
- throws java.rmi.RemoteException;
- /**
- * Sets the supplierid
- * @param java.lang.String the new supplierid value
- */
- public void setSupplierid( java.lang.String supplierid )
- throws java.rmi.RemoteException;
- /**
- * Returns the userid
- * @return the userid
- */
- public java.lang.String getUserid( )
- throws java.rmi.RemoteException;
- /**
- * Sets the userid
- * @param java.lang.String the new userid value
- */
- public void setUserid( java.lang.String userid )
- throws java.rmi.RemoteException;
- /**
- * Returns the firstname
- * @return the firstname
- */
- public java.lang.String getFirstname( )
- throws java.rmi.RemoteException;
- /**
- * Sets the firstname
- * @param java.lang.String the new firstname value
- */
- public void setFirstname( java.lang.String firstname )
- throws java.rmi.RemoteException;
- /**
- * Returns the lastname
- * @return the lastname
- */
- public java.lang.String getLastname( )
- throws java.rmi.RemoteException;
- /**
- * Sets the lastname
- * @param java.lang.String the new lastname value
- */
- public void setLastname( java.lang.String lastname )
- throws java.rmi.RemoteException;
- /**
- * Returns the address
- * @return the address
- */
- public java.lang.String getAddress( )
- throws java.rmi.RemoteException;
- /**
- * Sets the address
- * @param java.lang.String the new address value
- */
- public void setAddress( java.lang.String address )
- throws java.rmi.RemoteException;
- /**
- * Returns the message
- * @return the message
- */
- public java.lang.String getMessage( )
- throws java.rmi.RemoteException;
- /**
- * Sets the message
- * @param java.lang.String the new message value
- */
- public void setMessage( java.lang.String message )
- throws java.rmi.RemoteException;
- /**
- * Returns the credit_limit
- * @return the credit_limit
- */
- public java.lang.Float getCredit_limit( )
- throws java.rmi.RemoteException;
- /**
- * Sets the credit_limit
- * @param java.lang.Float the new credit_limit value
- */
- public void setCredit_limit( java.lang.Float credit_limit )
- throws java.rmi.RemoteException;
- }