📄 loginworkflowint.java
字号:
package com.wiley.compBooks.EJwithUML.TimeCardWorkflow;
import java.rmi.*;
import javax.ejb.*;
import com.wiley.compBooks.EJwithUML.Base.ApplicationExceptions.*;
/**
* The LoginWorkflowInt is the interface that ties the Bean with the Remote interface
* to provide compile time type checking.
*/
public interface LoginWorkflowInt
{
/** Answers true if the password is correct for the specified user. */
public boolean isUserValid(String username, String password) throws
DataNotFoundException, RemoteException;
/** Answers true if the password is due to be changed. */
public boolean isPasswordChangeRequired(String username) throws
DataNotFoundException, RemoteException;
/** Sets the password, if the old password is valid. */
public void setPassword(String username, String oldPassword, String newPassword)
throws InvalidDataException, DataNotFoundException, RemoteException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -