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