UNPKG

node-web-mvc

Version:
29 lines (28 loc) 664 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class MappingRegistration { constructor(mapping, handlerMethod, mappingName) { this.mapping = mapping; this.handlerMethod = handlerMethod; this.mappingName = mappingName; } /** * 获取当前映射配置 */ getMapping() { return this.mapping; } /** * 获取当前映射对应的执行函数 */ getHandlerMethod() { return this.handlerMethod; } /** * 获取当前映射名称 */ getMappingName() { return this.mappingName; } } exports.default = MappingRegistration;