ManagerLocal.java
资源名称:MyStore.rar [点击查看]
上传用户:hgs128
上传日期:2007-02-03
资源大小:166k
文件大小:2k
源码类别:
百货/超市行业
开发平台:
WINDOWS
- /*
- * Generated by XDoclet - Do not edit!
- */
- package bmp;
- /**
- * Local interface for Manager.
- * @lomboz generated
- */
- public interface ManagerLocal
- extends javax.ejb.EJBLocalObject
- {
- /**
- * Returns the managerID
- * @return the managerID
- */
- public java.lang.String getManagerID( ) ;
- /**
- * Sets the mangerID
- * @param java.lang.String the new managerID value
- */
- public void setManagerID( java.lang.String managerID ) ;
- /**
- * Returns the userID
- * @return the userID
- */
- public java.lang.String getUserID( ) ;
- /**
- * Sets the userID
- * @param java.lang.String the new userID value
- */
- public void setUserID( java.lang.String userID ) ;
- /**
- * Returns the firstName
- * @return the firstName
- */
- public java.lang.String getFirstName( ) ;
- /**
- * Sets the firstName
- * @param java.lang.String the new firstName value
- */
- public void setFirstName( java.lang.String firstName ) ;
- /**
- * Returns the lastName
- * @return the lastName
- */
- public java.lang.String getLastName( ) ;
- /**
- * Sets the lastName
- * @param java.lang.String the new lastName value
- */
- public void setLastName( java.lang.String lastName ) ;
- /**
- * Returns the address
- * @return the address
- */
- public java.lang.String getAddress( ) ;
- /**
- * Sets the address
- * @param java.lang.String the new address value
- */
- public void setAddress( java.lang.String address ) ;
- /**
- * Returns the message
- * @return the message
- */
- public java.lang.String getMessage( ) ;
- /**
- * Sets the message
- * @param java.lang.String the new message value
- */
- public void setMessage( java.lang.String message ) ;
- /**
- * Returns the salary
- * @return the salary
- */
- public float getSalary( ) ;
- /**
- * Sets the salary
- * @param java.lang.String the new salary value
- */
- public void setSalary( float salary ) ;
- /**
- * Returns the Manager Data Object
- * @return the ManagerData
- */
- public bmp.ManagerData getManagerData( ) ;
- }