⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 isecurityprofile.java

📁 一个很好的开源项目管理系统源代码
💻 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 + -