📄 userint.java
字号:
package com.wiley.compBooks.EJwithUML.TimeCardDomain;
/**
* The UserInt is the interface that ties the Bean with the Remote interface
* to provide compile time type checking.
*/
public interface UserInt
{
/** Answers the name of this User bean. */
public String getName();
/** Answers true if the entered password matches this User's password. */
public boolean isPasswordValid(String entered);
/** Answers true if the password should be changed. */
public boolean isPasswordChangeRequired();
/** Set the password of this User bean. */
public void setPassword(String password);
/** Set the password change flag of this User bean. */
public void setPasswordChangeFlag(boolean flag);
/** Answers the current timecard of this User bean. */
public TimecardLocal getCurrentTimecard();
/** Sets the current timecard. */
public void setCurrentTimecard(TimecardLocal timecard);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -