iauthenticationmanager.java
来自「一个很好的开源项目管理系统源代码」· Java 代码 · 共 24 行
JAVA
24 行
package net.java.workeffort.service.security;import java.util.List;import net.java.workeffort.infrastructure.security.ISecurityProfile;import net.java.workeffort.service.support.InvalidPartyException;import net.java.workeffort.service.support.InvalidPasswordException;/** * Authentication Manager interface. * @author Antony Joseph */public interface IAuthenticationManager { /** * Authenticate the user * @param securityProfile The security profile of the user * @return list The list of maps with targetCd and operationCd */ void authenticate(ISecurityProfile securityProfile) throws InvalidPartyException, InvalidPasswordException;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?