irequestcontext.java
来自「一个很好的开源项目管理系统源代码」· Java 代码 · 共 28 行
JAVA
28 行
package net.java.workeffort.infrastructure.context;import net.java.workeffort.infrastructure.security.ISecurityProfile;import net.java.workeffort.infrastructure.view.ViewHelper;/** * Used for communication between different layers of the application. * <p> * The 'mode' is used to create a <code>ViewHelper</code> by the controllers to * render the view appropriately. This is set by the security interceptors as * needed. * @see ViewHelper * @author Antony Joseph */public interface IRequestContext { String getMode(); void setMode(String mode); Object getMiscellaneous(); void setMiscellaneous(Object miscellaneous); /** * @return the security profile object */ ISecurityProfile getSecurityProfile();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?