1234567891011121314151617181920212223242526 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.HttpHandler = void 0;
- class HttpHandler {
- constructor(context) {
- this.context = context !== null && context !== void 0 ? context : null;
- }
- setContext(context) {
- this.context = context;
- return this;
- }
- getContext() {
- return this.context;
- }
- getRoute() {
- return this.route;
- }
- getAction() {
- return this.action;
- }
- getOrder() {
- return this.order;
- }
- }
- exports.HttpHandler = HttpHandler;
- //# sourceMappingURL=HttpHandler.js.map
|