FileDocCategorySizeDatePackage
NotesManagerImpl.javaAPI DocGlassfish v2 API2724Fri May 04 22:32:42 BST 2007org.apache.coyote

NotesManagerImpl

public class NotesManagerImpl extends Object implements NotesManager
Simple API to handle notes with Request/Response object.
author
Jeanfrancois Arcand

Fields Summary
private Object[]
notes
Constructors Summary
Methods Summary
public java.lang.ObjectgetNote(int key)
Return the note associated with key,

        return notes[key];
    
public java.lang.ObjectremoveNote(int key)
Remove the note associated with the key token.

        Object o =  notes[key];
        notes[key] = null;
        return o;
    
public voidsetNote(int key, java.lang.Object value)
Add a note.

    
            
         
        notes[key] = value;