NotesManagerImplpublic class NotesManagerImpl extends Object implements NotesManagerSimple API to handle notes with Request/Response object. |
Fields Summary |
---|
private Object[] | notes |
Methods Summary |
---|
public java.lang.Object | getNote(int key)Return the note associated with key,
return notes[key];
| public java.lang.Object | removeNote(int key)Remove the note associated with the key token.
Object o = notes[key];
notes[key] = null;
return o;
| public void | setNote(int key, java.lang.Object value)Add a note.
notes[key] = value;
|
|