Changeset 50c67d5904d67682fc9072441591fbe0027a544c
- Timestamp:
- 09/22/07 15:22:45
(1 year ago)
- Author:
- Christopher Jung <bktheg@web.de>
- git-committer:
- Christopher Jung <bktheg@web.de> 1190467365 +0200
- git-parent:
[0964094fb1854f82559922a5c165fc4e3886f8a2]
- git-author:
- Christopher Jung <bktheg@web.de> 1188048856 +0200
- Message:
Die HttpServlet?-Variable 'context' gefixt
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r21f64c6 |
r50c67d5 |
|
| 37 | 37 | import net.driftingsouls.ds2.server.framework.Common; |
|---|
| 38 | 38 | import net.driftingsouls.ds2.server.framework.Configuration; |
|---|
| 39 | | import net.driftingsouls.ds2.server.framework.Context; |
|---|
| 40 | | import net.driftingsouls.ds2.server.framework.ContextMap; |
|---|
| 41 | 39 | import net.driftingsouls.ds2.server.framework.Loggable; |
|---|
| 42 | 40 | import net.driftingsouls.ds2.server.framework.pipeline.configuration.PipelineConfig; |
|---|
| … | … | |
| 71 | 69 | context.putVariable(HttpServlet.class, "response", httpResponse); |
|---|
| 72 | 70 | context.putVariable(HttpServlet.class, "request", httpRequest); |
|---|
| 73 | | context.putVariable(HttpServlet.class, "context", context); |
|---|
| | 71 | context.putVariable(HttpServlet.class, "context", this.context); |
|---|
| 74 | 72 | context.putVariable(HttpServlet.class, "chain", chain); |
|---|
| 75 | 73 | |
|---|