blob: 1a403aebe2a483a3cd0a0aa2a4d48affcf63b8f3 [file] [log] [blame]
/*
* Copyright 1999-2004 The Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
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 {
}