📄 isecurityprofile.java
字号:
package net.java.workeffort.infrastructure.security;/** * Security profile of the user. Is stored in the users http session. * @author Antony Joseph */public interface ISecurityProfile { public final int ALLOWED = 0; public final int DENIED = 1; public final int CONDITIONAL = 2; /** * @return The party code */ String getPartyCd(); /** * @param partyCd The party code */ void setPartyCd(String partyCd); /** * @return The password */ String getPassword(); /** * @param password The password */ void setPassword(String password); /** * Retunss the access decision: ALLOWED, DENIED, CONDITIONAL. * @param target The target of the operation. * @param operation The operation to be invoked on the target * @return ALLOWED/DENIED/CONDITIONAL */ int getAccessDecision(String target, String operation);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -