Customer.java
资源名称:MyStore.rar [点击查看]
上传用户:hgs128
上传日期:2007-02-03
资源大小:166k
文件大小:3k
源码类别:
百货/超市行业
开发平台:
WINDOWS
- /*
- * Generated by XDoclet - Do not edit!
- */
- package bmp;
- /**
- * Remote interface for Customer.
- * @lomboz generated
- */
- public interface Customer
- extends javax.ejb.EJBObject
- {
- /**
- * Returns the customerID
- * @return the customerID
- */
- public java.lang.String getCustomerID( )
- throws java.rmi.RemoteException;
- /**
- * Sets the customerID
- * @param java.lang.String the new customerID value
- */
- public void setCustomerID( java.lang.String customerID )
- 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 phone
- * @return the phone
- */
- public java.lang.String getPhone( )
- throws java.rmi.RemoteException;
- /**
- * Sets the phone
- * @param java.lang.String the new phone value
- */
- public void setPhone( java.lang.String phone )
- throws java.rmi.RemoteException;
- /**
- * Returns the shareholderStatus
- * @return the shareholderStatus
- */
- public java.lang.String getShareholderStatus( )
- throws java.rmi.RemoteException;
- /**
- * Sets the shareholderStatus
- * @param java.lang.String the new shareholderStatus value
- */
- public void setShareholderStatus( java.lang.String shareholderStatus )
- throws java.rmi.RemoteException;
- }