idcontext.java

来自「Tomcat 4.1与WebServer集成组件的源代码包.」· Java 代码 · 共 29 行

JAVA
29
字号
package org.apache.naming.modules.id;/** * Store int handles in a DirContext. * * This replaces the 3.3 notes mechanism ( which were stored in ContextManager ). * The context name is the 'namespace' for the notes ( Request, Container, etc ). * One subcontext will be created for each note, with the id, description, etc. * * This is also used for Coyote hooks - to create the int hook id. * * Example: *   id:/coyote/hooks/commit -> 1 *   id:/coyote/hooks/pre_request -> 2 ... *  *   id:/t33/hooks/pre_request -> 1 ... * *   id:/t33/ContextManager/myNote1 -> 1 * * The bound object is an Integer ( for auto-generated ids ). * * XXX Should it be a complex object ? Should we allow pre-binding of *  certain objects ? * XXX Persistence: can we bind a Reference to persistent data ?  */public class IdContext {}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?